mPharma Diagnosis Microservices quick app using NestJS / RabbitMQ.
- RabbitMQ - https://www.rabbitmq.com
- Redis - https://redis.io
- PostgreSQL - https://www.postgresql.org
- TypeORM - https://typeorm.io
- Use
git submodule update --init --recursive
command to update/fetch submodules. - Update
.env
file with the necessary credentials - Diagnosis-service endpoint:
http://localhost:5001
- Notification-service endpoint:
http://localhost:5002
To start diagnosis-service folder cd diagnosis-service
npm install
npm run start:dev
To start notification-service folder cd notification-service
npm install
npm run start:dev
docker-compose up
- Use
name
of the service to connect service internally with docker compose environment. - for rebuild services use command
docker-compose up --build
. - for shutdown the docker container use command
docker-compose down
.