cd apps/backend
- 🧐make sure you have
.env
file in theapps/backend
folder with proper environment variables - 🚢make sure you have
docker
anddocker-compose
- 🛫launch app infrastructure using the following command (it will use docker-compose to launch db, kafka, debezium, etc...):
npm run launch:infrastructure
- 😊start application using
npm run start:dev
cd apps/backend
- 🧐make sure you have
.env.test.local
file in theapps/backend
folder with proper environment variables - 🚢make sure you have
docker
anddocker-compose
- 🛫launch app infrastructure using the following command (it will use docker-compose to launch db, kafka, debezium, etc...):
npm run launch:infrastructure:test
- 😊run tests with
npm run test:acceptance