We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
Minimalist boilerplate for NODEJS, designed for vertical and horizontal scalability.
Minimalist boilerplate fornodejs, designed for vertical and horizontal scalability.
git clone https://github.com/kevoj/nodetomiccd nodetomicyarn
Then, you will need to create a .env file in the root of the project
PROJECT_MODE=developmentPROJECT_NAME=example-nameSERVER_HOSTNAME=localhostSERVER_PORT=8000SERVER_WEBSOCKET_PORT=8001SWAGGER_HOSTNAME=localhostSWAGGER_API_DOCS=trueJWT_SECRET_KEY=shhhhMONGODB_HOSTNAME=127.0.0.1MONGODB_PORT=27017MONGODB_DATABASE=example-devMONGODB_USERNAME=MONGODB_PASSWORD=REDIS_HOSTNAME=127.0.0.1REDIS_PORT=6379REDIS_PASSWORD=
Start the project in development mode with the .env file that is in the root
yarn start
Run the unit tests
yarntest
Compile the project
yarn build
Guide