# README
microservice-auth
- 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:
task docker:network
- Build image
task docker:build
- To deploy Auth Service:
task docker:deploy
- To stop Auth Service:
task docker:stop