RebornPad
Go microservices notes
Jul 12, 2026
Docker networking cheatsheet
Jul 10, 2026
SSH tunneling examples
Jul 8, 2026
PostgreSQL tuning
Jul 5, 2026
Useful regex patterns
Jul 2, 2026
Bold
Italic
Code
Link
Export
# Go microservices notes ## Project structure /cmd/api/main.go /internal/handler/ /internal/service/ /internal/repository/ ## Useful commands go build -o bin/api ./cmd/api docker compose up -d ## Notes - Use context for cancellation - Graceful shutdown with signal handling - Health check endpoint: GET /health
Markdown ยท 47 words
Saved