Categorygithub.com/8thgencore/microservice-chat
repository
0.0.0-20241223112054-44b734fbfeca
Repository: https://github.com/8thgencore/microservice-chat.git
Documentation: pkg.go.dev

# Packages

No description provided by the author
No description provided by the author

# README

microservice-chat

  1. 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.

  1. Make sure docker network service-net is in place for microservices communication. If none exists, then create network:
make docker-net
  1. Build image
make docker-build
  1. To deploy Chat Service:
make docker-deploy
  1. To stop Chat Service:
make docker-stop ENV=<environment>