This template is using Nest and Prisma ORM.
yarn
# or yarn install# 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# development
yarn start
# watch mode
yarn start:dev
# production mode
yarn start:prod# unit tests
yarn test
# e2e tests
yarn test:e2e
# test coverage
yarn test:covThis project is under MIT License