# README
microservice-chat
- Read .env file to environments
export $(xargs < .env.local)
ENV is used then as a config name. Possible ENV values are now stage and prod as these configs are now in the repository.
- Make sure docker network service-net is in place for microservices communication. If none exists, then create network:
make docker-net
- Build image
make docker-build
- To deploy Chat Service:
make docker-deploy
- To stop Chat Service:
make docker-stop ENV=<environment>