This is the Go_order service
Generated with
micro new go_order --namespace=go.micro --type=srv
- FQDN: go.micro.srv.go_order
- Type: srv
- Alias: go_order
Micro services depend on service discovery. The default is multicast DNS, a zeroconf system.
In the event you need a resilient multi-host setup we recommend consul.
# install consul
brew install consul
# run consul
consul agent -dev
A Makefile is included for convenience
Build the binary
make build
Run the service
./go_order-srv
Build a docker image
make docker