Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hendraaagil/nest-prisma
Starter template with Nest and Prisma ORM.
https://github.com/hendraaagil/nest-prisma
nestjs prisma template
Last synced: about 1 month ago
JSON representation
Starter template with Nest and Prisma ORM.
- Host: GitHub
- URL: https://github.com/hendraaagil/nest-prisma
- Owner: hendraaagil
- License: mit
- Created: 2023-06-12T14:56:40.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-08-15T14:48:05.000Z (over 1 year ago)
- Last Synced: 2024-11-02T04:42:01.789Z (3 months ago)
- Topics: nestjs, prisma, template
- Language: TypeScript
- Homepage:
- Size: 243 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Nest Prisma Starter Template
This template is using [Nest](https://nestjs.com/) and [Prisma](https://prisma.io/) ORM.
## Installation
```bash
yarn
# or yarn install
```## Prisma command
```bash
# run migration in development
yarn prisma:migrate:dev# run migration in production
yarn prisma:migrate:prod# run seeder
yarn prisma:seed# run prisma studio
yarn prisma:studio
```## Running the app
```bash
# development
yarn start# watch mode
yarn start:dev# production mode
yarn start:prod
```## Test
```bash
# unit tests
yarn test# e2e tests
yarn test:e2e# test coverage
yarn test:cov
```## License
This project is under [MIT License](LICENSE)