Skip to content

Latest commit

 

History

History
74 lines (50 loc) · 1.68 KB

README.md

File metadata and controls

74 lines (50 loc) · 1.68 KB

NestJS Template

Nestjs template repository

Tech stack

TypeScript NodeJS NestJS RxJS

Yarn ESLint Jest

Docker GitHub Actions

Usage

Setup

Make sure to have installed right version of Node.js in nvm

nvm use

Don't forget to install the dependencies:

yarn install

Running the app

# 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

Test

# 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