A progressive Node.js framework for building efficient and scalable server-side applications.
Nest framework TypeScript starter repository.
For running the app you can execute npm install, after these you need to create a .env based in .env example.
The second step is run pisma client, in the prisma commands you need execute the first command and third, this command run migrations.
The prod url is "https://app-knlejw27ka-uc.a.run.app" for view the API docs in swagger you can visit "https://app-knlejw27ka-uc.a.run.app/api/docs"
$ npm install
# development
$ npm run start
# watch mode
$ npm run start:dev
# production mode
$ npm run start:prod
# generate prisma client
$ npx prisma generate
# rollback
$ npx prisma migrate rollback
# generate migration
$ npx prisma migrate dev --name init
# apply all migrations
$ npx prisma migrate deploy
# pull db schema
$ npx prisma db pull
# unit tests
$ npm run test
# e2e tests
$ npm run test:e2e
# test coverage
$ npm run test:cov
Nest is an MIT-licensed open source project. It can grow thanks to the sponsors and support by the amazing backers. If you'd like to join them, please read more here.
- Author - Kamil Myśliwiec
- Website - https://nestjs.com
- Twitter - @nestframework
Nest is MIT licensed.