Nest framework TypeScript starter repository with user management and role based authorizations
$ npm install
Copy the src/assets/config-template.json
file as src/assets/config.json
$ cp src/assets/config-template.json src/assets/config.json
Feel free to edit settings to match your environment requirements
Copy the prisma/.env.template
file as prisma/.env
$ cp prisma/.env.template prisma/.env
Feel free to edit settings to match your environment requirements
$ npx prisma db push
# development
$ npm run start:dev
# production mode
$ npm run start:prod
# all tests
$ npm run mocha
# e2e tests
$ npm run mocha:e2e
# test coverage
$ npm run mocha:cov
Green = Core modules
Blue = API modules
Nest is MIT licensed.