Starts environment
docker compose -f docker/docker-compose.yaml up
Generate Prisma Models
prisma generate
# development
$ npm run start-web
# watch mode
$ npm run start-web:dev
# production mode
$ npm run start-web:prod
Install lambda-local globally
npm install -g lambda-local
Run lambda-local
lambda-local -l dist/apps/audit-function/main.js -h handler -e debug/sqs/event.json
# unit tests
$ npm run test
# e2e tests
$ npm run test:e2e
# test coverage
$ npm run test:cov