Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 499 Bytes

File metadata and controls

33 lines (24 loc) · 499 Bytes
layout default

Service Discovery with Consul

Use Consul as the service registry.

In code

package main

import (
    "go-micro.dev/v6"
    "go-micro.dev/v6/registry/consul"
)

func main() {
    reg := consul.NewConsulRegistry()
    svc := micro.NewService("consul-registry", micro.Registry(reg))
    svc.Init()
    svc.Run()
}

Via environment

Run your service with env vars set:

MICRO_REGISTRY=consul MICRO_REGISTRY_ADDRESS=127.0.0.1:8500 go run main.go