Create a .env file based on the .env.example file, then:
pnpm install
Run the db:
docker-compose up db -d
Run the API:
pnpm start:dev
Or optionally you can run both with:
docker-compose up -d
# unit tests
pnpm test
# e2e tests
pnpm test:e2e
# test coverage
pnpm test:cov