Soft launching the new NodeBB website

Moved NodeBB Development

Suggested Topics


  • NodeBB v1.8.1 released

    Moved NodeBB Development
    1
    5 Votes
    1 Posts
    1k Views

    Hello all,

    We have released v1.8.1 which is a minor patch that solves these issues.

    Cheers!

  • 0 Votes
    6 Posts
    1k Views

    @pitaj said in Setting up a nodebb development environment:

    grunt isn't installed globally by default, so run npm i -g grunt then it will work

    Thank you. Once I installed it I could just run grunt and it worked.

    It still takes almost 30 seconds to build, but at least it's automatic.

    This is probably something seasoned nodejs devs know, n00bs like me not so much.

    Would someone mind updating the documentation since nodebb watch doesn't work anymore?

  • 0 Votes
    1 Posts
    1k Views

    I use nginx as a static file server just as the wiki illustrates. And I added a log to monitor what kind of requests goes to NodeBB server.

    location ~ ^/(images|sounds|templates|uploads|vendor|src\/modules|nodebb\.min\.js|stylesheet\.css|admin\.css) { root /path/to/nodebb/public/; try_files $uri $uri/ @nodebb; } location / { access_log /var/log/nginx/access3.log; proxy_pass http://io_nodesss; }

    I found that some of requests of the static files are still going to NodeBB:

    "GET /src/modules/composer/preview.js?d7bd0222-d024-4aba-869d-0b088e7d5ba1 HTTP/1.1" 200 772 "GET /src/modules/composer/uploads.js?d7bd0222-d024-4aba-869d-0b088e7d5ba1 HTTP/1.1" 200 2539 "GET /src/modules/composer/drafts.js?d7bd0222-d024-4aba-869d-0b088e7d5ba1 HTTP/1.1" 200 492

    And I checked that those files are not in ./src/modules, they are at ./node_modules/xxxx/static/ instead.

    Is there any solution to this? Don't tell me that I should copy those files to /src/modules/ manually.

  • 0 Votes
    3 Posts
    1k Views

    Admin > settings > General

  • 6 Votes
    7 Posts
    5k Views

    could you fix this i would like to use it ;D