AppVentory is a tool to manage applications.
Add keys Instal mkcert https://github.com/FiloSottile/mkcert
mkcert -install
mkcert localhostInstall dependencies
$ npm installLaunch the database
docker-compose up -dnpx prisma generate && npx prisma db push --force-reset && npx prisma db seed# development
$ npm run start
# watch mode
$ npm run start:dev
# production mode
$ npm run start:prodOpen your browser: https://localhost:3000
# unit tests
$ npm run test
# e2e tests
$ npm run test:e2e
# test coverage
$ npm run test:cov