A template for NestJS project with
$ npm install# Discover options by yourself
$ npm start -- -- --help# unit tests
$ npm run test
# e2e tests
$ npm run test:e2e
# test coverage
$ npm run test:cov# coming soon
docker compose -p minest -f docker-compose.dev.yaml up -d- Update
docker-compose.dev.yaml+.envto your new database config - Remove
mysql2driver frompackage.json - Install your database driver. More info at Knex Guide
- Update the
clientto your database driver in./src/config/database.ts-const createKnexClient()
Nest is MIT licensed.