Start separate microservices with one NestJS app.
$ npm install
# development
$ npm run start posts
$ npm run start users
$ npm run start
# watch mode
$ npm run start:dev posts
$ npm run start:dev users
$ npm run start:dev
# production mode
$ npm run start:prod posts
$ npm run start:prod users
$ npm run start:prod
# unit tests
$ npm run test
# e2e tests
$ npm run test:e2e
# test coverage
$ npm run test:cov
Nest is MIT licensed.