Skip to content

Latest commit

 

History

History
64 lines (43 loc) · 785 Bytes

README.md

File metadata and controls

64 lines (43 loc) · 785 Bytes

Description

Test repository which uses a progressive NestJS framework for building efficient and scalable serverless microservice applications.

Installation

$ npm install

Running default app

# development
$ npm run start

# watch mode
$ npm run start:dev

# production mode
$ npm run start:prod

Running specific app

# development
$ npm run start appName

# watch mode
$ npm run start:dev appName

# production mode
$ npm run start:prod appName

Building default app

# production
$ npm run build

Building specific app

# production
$ npm run build appName

Test

# unit tests
$ npm run test

# e2e tests
$ npm run test:e2e

# test coverage
$ npm run test:cov