Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mrsauravsahu/template-nestjs-monorepo
WIP
https://github.com/mrsauravsahu/template-nestjs-monorepo
Last synced: about 1 month ago
JSON representation
WIP
- Host: GitHub
- URL: https://github.com/mrsauravsahu/template-nestjs-monorepo
- Owner: mrsauravsahu
- Created: 2021-07-12T06:37:34.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-07-14T07:25:38.000Z (over 3 years ago)
- Last Synced: 2024-10-14T08:33:57.731Z (3 months ago)
- Language: TypeScript
- Homepage:
- Size: 105 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# template-nestjs-monorepo
## description
[nest.js](https://github.com/nestjs/nest) monorepo template
## installation
```bash
$ npm install
```## running the services
```bash
# development
$ npm run start
# example: npm run start gateway# watch mode
$ npm run start:dev
# example: npm run start:dev gateway# production mode
$ npm run start:prod
# example: npm run start:prod gateway
```## test
you can run the tests from the root directory for all services together
```bash
# unit tests
$ npm run test# e2e tests
$ npm run test:e2e# test coverage
$ npm run test:cov
```