https://github.com/qvil/nest-prisma
https://github.com/qvil/nest-prisma
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/qvil/nest-prisma
- Owner: qvil
- Created: 2021-04-25T10:08:27.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-05-09T13:47:00.000Z (about 5 years ago)
- Last Synced: 2025-03-22T22:39:06.800Z (about 1 year ago)
- Language: TypeScript
- Size: 356 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Nest-prisma
## Description
[Nest](https://github.com/nestjs/nest) framework TypeScript starter repository.
## Installation
```bash
$ npm install
```
## Running the app
```bash
# development
$ npm run start
# watch mode
$ npm run start:dev
# production mode
$ npm run start:prod
```
## Prisma
```bash
# Open Studio
$ prisma studio
or
$ npm run prisma:studio
# Update schema
$ prisma db push --preview-feature
or
$ npm run prisma:db_push
# Deprecated
# Migrate schema
$ prisma migrate dev
```
## Test
```bash
# unit tests
$ npm run test
# e2e tests
$ npm run test:e2e
# test coverage
$ npm run test:cov
```
## License
[MIT licensed](LICENSE).