This repository provides a robust and well-structured template for building microservices with Go, designed for deployment in a Kubernetes environment.
cmd/
, internal/
, pkg/
) promotes maintainability and scalability.Dockerfile
is optimized for multi-stage builds and multi-platform support (linux/amd64, linux/arm64), creating small and efficient container images.Here's a quick overview of the main parts of the template:
cmd/service/main.go
: The entry point of your service. It uses Cobra for command-line argument parsing and orchestrates the service startup and shutdown.internal/
: This directory contains your application's private code.config/
: Handles loading and managing configuration using Viper.handlers/
: Contains HTTP and gRPC handler functions.health/
: Implements Kubernetes health check endpoints.log/
: Provides a wrapper around slog
for structured logging, configurable output, format, and context.server/
: Sets up and manages HTTP and gRPC servers.service/
: Contains the core business logic of your service.pkg/
: This directory is for reusable libraries that you might share across multiple projects. It's empty by default in this template.Dockerfile
: Defines how to build a Docker image for your service.go.mod
and go.sum
: Go module files for managing dependencies.app.yaml
: Example YAML configuration file. Viper supports other formats too!.github/workflows/build.yaml
: GitHub Actions workflow for CI/CD.Makefile
: Defines useful commands for local development.git clone [https://github.com/zaibon/go-template.git](https://github.com/zaibon/go-template.git)
cd go-template
go.mod
file to reflect your service's module path:go mod edit -module your-service-name
go mod tidy
app.yaml
) in the root directory. See the app.yaml
example for the structure.internal/service/service.go
file.internal/handlers/http.go
and gRPC definitions and handlers in internal/handlers/grpc.go
.make build
go build -o ./bin/your-service ./cmd/service/main.go
./bin/your-service
docker build -t your-service-image .
docker run -p 8080:8080 -p 9090:9090 your-service-image
The service uses Viper for configuration. You can configure it using:
See the internal/config/config.go
file for how configuration is loaded and structured.
The service uses slog
for logging. The logger is configured in cmd/service/main.go
using the options pattern defined in internal/log/log.go
.
The /healthz
endpoint provides a liveness probe, and the /readyz
endpoint provides a readiness probe for Kubernetes. You can add your own health check logic in the internal/health
package.
The HTTP server uses Gorilla Mux for routing and includes middleware for:
The template includes a basic gRPC server setup. Define your gRPC service definitions in .proto
files and generate the Go code using protoc
.
The Makefile provides the following commands:
make all
: Builds, lints, and tests the service.make build
: Builds the service.make lint
: Lints the code using golangci-lint.make test
: Runs the tests.make clean
: Removes build artifacts.The template includes a GitHub Actions workflow (.github/workflows/build.yaml
) that:
main
and develop
branches.main
branch when the build job is successful.Contributions are welcome! Feel free to submit issues or pull requests.