Can't set up NodeBB

General Discussion

Suggested Topics


  • 0 Votes
    6 Posts
    229 Views

    652bd9e1-81b6-4f6f-8712-87ca1fd75319-image.png

    I try to reinstall, run the ```
    ./nodebb setup

  • 0 Votes
    6 Posts
    473 Views

    It used to be there, but was removed
    https://github.com/NodeBB/NodeBB/commit/cb4930dac8854976b68a174ad4b65815f7e63f62#diff-949f495d29fabde280ed4c38b2eaef79a5313bda04f180faa594c135dfffa1ecL22

    Not sure why

    @inna feel free to open an issue on the Github page if you want this added back

  • 1 Votes
    2 Posts
    238 Views

    You could do some CSS based overrides.

    This is something I use in my custom css on the admin panel, it looks to see if you are either in a category or topic of a certain category, in this instance the "Red vs Blue Discussion" category (but using the slug)

    body[class*=page-category-red-vs-blue-discussion], body[class*=page-topic-category-red-vs-blue-discussion] { background-image: url(/assets/uploads/system/rvb-bg.jpg) !important; .navbar-default { border-bottom: 3px #dd0000 solid; border-image: linear-gradient(to right, red, blue); border-image-slice: 1; } .btn-primary, .btn-info { color: #fff; background-color: #dd0000; border-color: #dd1111; } .btn-primary:hover { color: #fff; background-color: #bb0000; border-color: #bb1111; } .btn-info.active, .btn-info.focus, .btn-info:active, .btn-info:focus, .btn-info:hover, .open > .dropdown-toggle.btn-info { color: #fff; background-color: #bb0000; border-color: #bb1111; } .navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:focus, .navbar-default .navbar-nav > .active > a:hover { color: #000; background-color: #bb0000; } .composer .mobile-navbar { background-color: #dd0000; } }

    Examples of the overrides can be seen here:
    Normal: https://saesrpg.uk/categories
    Override: https://saesrpg.uk/category/25/red-vs-blue-discussion

  • 0 Votes
    3 Posts
    2k Views

    You'll probably want NodeBB to run in the foreground, and not pipe output to the log file, if you want to use forever or upstart.

    node loader.js --no-silent --no-daemon will run production mode and leave output piping to stdout. It will also run in the foreground, which forever expects.

    If you use app.js, you won't need --no-daemon, but you'll only be running one process.

  • 0 Votes
    19 Posts
    5k Views

    @exodo said:

    @Danny-McWilliams said:

    @Mawi-Raura said:

    Exo.do is my favourite right now

    I agree with this, I'd love to know how the categories are listed like that down the side!

    Exodo theme is public on our github
    Nodebb theme exodo, branch 2.0
    Is a bit difficult to fit on another community cause you need modified widgets and some exodo tweaks but all is on our github
    Is only compatible with nodebb 0.7.x
    Been working on new version but not finished yet

    Ahh no problem, i'll take a look at it. Thanks!