Nest framework TypeScript starter repository.
$ npm install# development
$ npm run start
# watch mode
$ npm run start:dev
# production mode
$ npm run start:prod# unit tests
$ npm run test
# e2e tests
$ npm run test:e2e
# test coverage
$ npm run test:cov# create migration
$ npx sequelize-cli migration:generate --name [migration name]
# run all migrations
$ npx sequelize-cli db:migrate
# undo last migration
$ npx sequelize-cli db:migrate:undo
# undo all migrations
$ npx sequelize-cli db:migrate:undo:all
# create seeders
$ npx sequelize-cli seed:generate --name [seeder name]
# run all seeders
$ npx sequelize-cli db:seed:all
# undo all seeders
$ npx sequelize-cli db:seed:undo