$ yarn
db migration
# reset schema
$ yarn db:reset
# create migration
$ yarn db:makeMigration "MIGRATION MESSAGE"
# apply migration
$ yarn db:migrate
$ docker-compose up -d
# development
$ yarn run start:local
# 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