Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mrsauravsahu/template-nestjs-monorepo-gitlab
https://github.com/mrsauravsahu/template-nestjs-monorepo-gitlab
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/mrsauravsahu/template-nestjs-monorepo-gitlab
- Owner: mrsauravsahu
- Created: 2021-07-19T10:43:58.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-07-20T04:27:24.000Z (over 3 years ago)
- Last Synced: 2024-10-14T08:33:57.615Z (3 months ago)
- Language: TypeScript
- Size: 84 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
```