An awesome misterious project.
$ npm install
$ docker run -it -p 5432:5432 postgres:11.6
# 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
# Run migrations
$ npm run typeorm -- migration:run
# Generate a migration
$ npm run typeorm -- migration:generate -n AddMigration