An open API service indexing awesome lists of open source software.

https://github.com/qvil/nest-prisma


https://github.com/qvil/nest-prisma

Last synced: 2 months ago
JSON representation

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).