e071084ebe
govulncheck / govulncheck (push) Has been cancelled
Lint / golangci-lint (push) Has been cancelled
Run Tests / Unit Tests (push) Has been cancelled
Run Tests / Etcd Integration Tests (push) Has been cancelled
Harness (E2E) / Harnesses (mock LLM) (push) Has been cancelled
Harness (E2E) / Provider harnesses (live LLM conformance) (push) Has been cancelled
34 lines
499 B
Markdown
34 lines
499 B
Markdown
---
|
|
layout: default
|
|
---
|
|
|
|
# Service Discovery with Consul
|
|
|
|
Use Consul as the service registry.
|
|
|
|
## In code
|
|
|
|
```go
|
|
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:
|
|
|
|
```bash
|
|
MICRO_REGISTRY=consul MICRO_REGISTRY_ADDRESS=127.0.0.1:8500 go run main.go
|
|
```
|