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.js
or override with your own configuration that matches theNODE_ENV
environment variable by copying the./config/env/development.template.js
file 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