i need help by installing nodebb

Solved Technical Support

Suggested Topics


  • 0 Votes
    5 Posts
    487 Views

    Short of using OAuth2, you could write your own app component to tie NodeBB into MySQL. One of the issues is that MySQL is a generic database so the format of your authentication easily won't match in some obvious way, so needs a customer connectors no matter what. Just adding another DB source for authentication would not solve your problem. It would have to be something that connects to your database and has the ability to understand your schema and has the ability to store all necessary additional schema changes there.

  • Help!

    Technical Support
    0 Votes
    5 Posts
    343 Views

    @julian I guess so, I Manually edit the configuration file finally, and it works.

    Thanks a million!

  • 0 Votes
    7 Posts
    1k Views

    @PitaJ Thanks. I was seeing the same "Error: Cannot find module '@babel/runtime/core-js/object/create'" issue and deleting my node_modules directory and then running

    npm install ./nodebb setup

    solved the problem for me.

  • 0 Votes
    6 Posts
    893 Views

    I see that I had to execute ./nodebb build in the container. I am guessing that it is because after removing the container, the build directory was gone and needed to be rebuilt, which tells me I have to put a build command on every container startup. This is not very optimal. I am hoping at some point in the future we can have a more hands-off docker-friendly deployment (like with env vars and all).

  • 0 Votes
    4 Posts
    2k Views

    Fixed on master thanks for reporting.