what is the best way to debug theme?

NodeBB Development

Suggested Topics


  • 0 Votes
    1 Posts
    186 Views

    Hey,

    We are looking to hire someone to do some custom theme work with either the persona or material theme for one of our clients. Please email me sterling [at] luceosports [dot] com with the subject 'NodeBB Development' if interested.

    Thanks,
    Sterling

  • 0 Votes
    4 Posts
    2k Views

    Nice way to debug. I am still using console.log() 🙂 I guss my stuff is to simple

  • 0 Votes
    4 Posts
    2k Views

    I restarted nginx, and do so whenever I try to make changes, but it's not working... Is something like this valid? I made sure the file in sites-available and sites-enabled are linked.

    upstream io_nodes { ip_hash; server 127.0.0.1:4567; } server { listen 80; server_name forums.violetcomics.com; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header Host $http_host; proxy_set_header X-NginX-Proxy true; proxy_redirect off; # Socket.io Support proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; gzip on; gzip_min_length 1000; gzip_proxied off; gzip_types text/plain application/xml application/x-javascript text/css application/json; location @nodebb { proxy_pass http://io_nodes; } location ~ ^/(images|language|sounds|templates|uploads|vendor|src\/modules|nodebb\.min\.js|stylesheet\.css|admin\.css) { root /path/to/nodebb/public/; try_files $uri $uri/ @nodebb; } location / { proxy_pass http://io_nodes; } }

    Edit: Error came back. @_@ I'll get back to it later.

  • 2 Votes
    4 Posts
    3k Views

    @Xiph @trevor Thank you guys for your answers. I am noob at nodebb so I will need some time to learn how the stuff works, but I will keep you updated.

  • 2 Votes
    33 Posts
    21k Views

    @Giorgio-Chiodi testing notifications