Nest framework TypeScript starter repository.
$ yarn install# Create a migration
$ npm run migration:create --name=foo
# Generate a migration from schema changes
$ npm run migration:generate --name=pet
# Run migrations and checks for schema changes
$ npm run migration:run
# Revert migrations
$ npm run migration:revert# Create a seed config
$ npm run seed:config
# Run seed data
$ npm run seed:run# development
$ yarn run start
# watch mode
$ yarn run start:dev
# production mode
$ yarn run start:prod# unit tests
$ yarn run test
# e2e tests
$ yarn run test:e2e
# test coverage
$ yarn run test:cov# Swagger
$ http://localhost:8080/api/docs# Dev
$ git checkout develop
$ git pull
$ yarn build & vercel deploy
# Staging
$ git checkout staging
$ git pull
$ yarn build & vercel deploy
# Production
$ git checkout main
$ git pull
$ yarn build & vercel deploy --prod