$ pnpm install
# running the PostgreSQL docker
$ docker compose up -d
# using prisma to migrate and seed database
$ npx prisma migrate dev --name init
# development
$ pnpm run start
# watch mode
$ pnpm run start:dev
# production mode
$ pnpm run build && pnpm run start:prod
# unit tests
$ pnpm run test
# e2e tests
$ pnpm run test:e2e
# test coverage
$ pnpm run test:cov
Contributing is done via pull requests. If you want to add something, don't be afraid to do it!
SaberQuest is Apache 2.0 licensed.