You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# generate migration
$ docker-compose run nestjs npm run typeorm:generate AnyNameYouLike
# run migration
$ docker-compose run nestjs npm run typeorm:run
Running the app without docker
Installation
$ npm install
Migration
# generate migration
$ npm run typeorm:generate AnyNameYouLike
# run migration
$ npm run typeorm:run
Running the app
# development
$ npm run start
# watch mode
$ npm run start:dev
# production mode
$ npm run start:prod