Personal NestJS template with NestJS + MikroORM + nestjs-console + eta.
Only MySQL is supported
npm install
cp .env.example .env
docker-compose up
docker-compose run app npm run console migration up
# development
npm run start
# watch mode
npm run start:dev
# production mode
npm run start:prod
# migration cli
npm run console migration
# unit tests
npm run test
# e2e tests
npm run test:e2e
# test coverage
npm run test:cov