$ pnpm install
# development
$ pnpm run start
# watch mode
$ pnpm run start:dev
# production mode
$ pnpm run start:prod
# unit tests
$ pnpm run test
# e2e tests
$ pnpm run test:e2e
# test coverage
$ pnpm run test:cov
# generate migration
$ pnpm migrations:generate ./libs/database/src/migrations/<migration-name>
# run migration
$ pnpm migrations:run
# revert migration
$ pnpm migrations:revert
# create migration
$ pnpm migrations:create ./libs/database/src/migrations/<migration-name>
Distributed under the MIT License. See LICENSE
for more information.