Skip to content

Latest commit

 

History

History
31 lines (25 loc) · 625 Bytes

README.md

File metadata and controls

31 lines (25 loc) · 625 Bytes

CITiplate Node

CITi's Node.js projects boilerplate.

Development Environment

This project uses Docker-compose pattern. You only need to run the scripts on Makefile:

1 - Create the node_modules volume

make setup

2 - Install application dependencies

make install

3 - Create the database instance

make create_db

4 - Apply the migrations

make migrate_db 

Testing

Write tests using jest on folders with the name __test__. You can run the tests using the test script:

make test