{"id":49109045,"url":"https://github.com/kuan-m/microservices_with_go","last_synced_at":"2026-04-21T03:31:39.724Z","repository":{"id":317521154,"uuid":"1065662682","full_name":"kuan-m/microservices_with_go","owner":"kuan-m","description":"msa, grpc, clean architecture, eda, k8s, tilt, rabbitmq","archived":false,"fork":false,"pushed_at":"2025-11-18T15:01:30.000Z","size":565,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-11-30T02:03:18.824Z","etag":null,"topics":["clean-layered-architecture","eda","grpc","k8s","msa","tilt"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/kuan-m.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-09-28T07:11:25.000Z","updated_at":"2025-11-20T17:40:46.000Z","dependencies_parsed_at":"2025-10-01T13:20:48.036Z","dependency_job_id":"1eee1f45-2c2a-4161-b504-97285fb19bc8","html_url":"https://github.com/kuan-m/microservices_with_go","commit_stats":null,"previous_names":["kuanori/microservices_with_go","kuan-m/microservices_with_go"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/kuan-m/microservices_with_go","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kuan-m%2Fmicroservices_with_go","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kuan-m%2Fmicroservices_with_go/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kuan-m%2Fmicroservices_with_go/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kuan-m%2Fmicroservices_with_go/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kuan-m","download_url":"https://codeload.github.com/kuan-m/microservices_with_go/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kuan-m%2Fmicroservices_with_go/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32075222,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-21T02:38:07.213Z","status":"ssl_error","status_checked_at":"2026-04-21T02:38:06.559Z","response_time":128,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["clean-layered-architecture","eda","grpc","k8s","msa","tilt"],"created_at":"2026-04-21T03:31:38.949Z","updated_at":"2026-04-21T03:31:39.719Z","avatar_url":"https://github.com/kuan-m.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Complete_microservices_with_go\n\n🚀A learning project building while taking \"Complete microservices with go\" Udemy course\n\n**Course:** [Complete microservices with go](https://www.udemy.com/course/complete-microservices-with-go)\n\n```bash\ngo test -v *.go\n```\n\n\n```bash\nminikube dashboard\n```\n\n```bash\ntilt up\n```\n\n```bash\ngo run tools/create_service.go -name test\n```\n```\nDirectory structure created:\n\nservices/test-service/\n├── cmd/                    # Application entry points\n├── internal/              # Private application code\n│   ├── domain/           # Business domain models and interfaces\n│   │   └── test.go         # Core domain interfaces\n│   ├── service/          # Business logic implementation\n│   │   └── service.go    # Service implementations\n│   └── infrastructure/   # External dependencies implementations (abstractions)\n│       ├── events/       # Event handling (RabbitMQ)\n│       ├── grpc/         # gRPC server handlers\n│       └── repository/   # Data persistence\n├── pkg/                  # Public packages\n│   └── types/           # Shared types and models\n└── README.md            # This file\n```\n\n###[Kubernetes](https://kubernetes.io/docs/concepts/architecture/)\n```bash\nkubectl get pods\n```\n\n```bash\nkubectl get services\n```\n\n```bash\nkubectl get deployments\n```\n\n```bash\nkubectl get all | cat\n```\n\n```bash\nkubectl logs deployment/api-gateway | cat\n```\n\n```bash\nkubectl describe deployment/api-gateway | cat\n```\n\n```bash\nkubectl get nodes -o wide\n```\n\n```bash\nkubectl describe pod {POD_NAME} | grep -A 5 \"Conditions:\"\n```\n\n```bash\nkubectl apply -f ./infra/development/k8s/driver-service-deployment.yaml\n```\n\n```bash\nkubectl delete -f ./infra/development/k8s/driver-service-deployment.yaml\n```\n\n```bash\nhttps://docs.stripe.com/stripe-cli\n```\n```bash\nstripe listen --forward-to localhost:8081/webhook/stripe\n```\n\n![alt text](./docs/kubernetes-components.png)\n\n![alt text](./docs/k8s-components.png)\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkuan-m%2Fmicroservices_with_go","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkuan-m%2Fmicroservices_with_go","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkuan-m%2Fmicroservices_with_go/lists"}