Nestjs template repository
Make sure to have installed right version of Node.js in nvm
nvm use
Don't forget to install the dependencies:
yarn install
# Build Docker Image
yarn docker:build
# Run Docker Image
yarn docker:start
# Run app
yarn start
# Run app in watch mode
yarn start:dev
# Run app in debug mode
yarn start:debug
# Run app in production mode
yarn start:prod
# unit tests
yarn run test
# unit tests in watch mode
yarn run test:watch
# e2e tests
yarn run test:e2e
# e2e tests in watch mode
yarn run test:e2e:watch
# Runing tests in coverage mode
yarn test:coverage