This project is a reimplementation of node-rest-starter using the Nest framework.
It is currently a WIP.
- Install Node module dependencies via:
npm install - Use the default configuration in
./config/env/default.jsor override with your own configuration that matches theNODE_ENVenvironment variable by copying the./config/env/development.template.jsfile and renaming it to match the value of$NODE_ENV - Start the application via
npm start
# development
$ npm run start
# watch mode
$ npm run start:dev
# production mode
$ npm run start:prod# unit tests
$ npm run test
# e2e tests
$ npm run test:e2e
# test coverage
$ npm run test:cov