https://github.com/fanboykun/nest-hello
https://github.com/fanboykun/nest-hello
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/fanboykun/nest-hello
- Owner: fanboykun
- Created: 2024-02-02T17:53:46.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-02-21T16:23:40.000Z (over 1 year ago)
- Last Synced: 2024-02-21T17:35:57.347Z (over 1 year ago)
- Language: TypeScript
- Size: 169 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Requirement
- Node
- Docker
- postgre sql## Installation
```bash
$ pnpm install
```## Running the app
```bash
# development
$ pnpm run start# watch mode
$ pnpm run start:dev# production mode
$ pnpm run start:prod# database seed
$ npx prisma db seed
```## Test
```bash
# unit tests
$ pnpm run test# e2e tests
$ pnpm run test:e2e# test coverage
$ pnpm run test:cov
```