AppVentory is a tool to manage applications.
Add keys Instal mkcert https://github.com/FiloSottile/mkcert
mkcert -install
mkcert localhost
Install dependencies
$ npm install
Launch the database
docker-compose up -d
npx 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:prod
Open your browser: https://localhost:3000
# unit tests
$ npm run test
# e2e tests
$ npm run test:e2e
# test coverage
$ npm run test:cov