CITi's Node.js projects boilerplate.
This project uses Docker-compose pattern. You only need to run the scripts on Makefile:
1 - Create the node_modules volume
make setup2 - Install application dependencies
make install3 - Create the database instance
make create_db4 - Apply the migrations
make migrate_db Write tests using jest on folders with the name __test__. You can run the tests using the test script:
make test