{"id":38834787,"url":"https://github.com/raphaeldiscky/go-bank","last_synced_at":"2026-01-17T13:55:11.788Z","repository":{"id":240186310,"uuid":"677266318","full_name":"raphaeldiscky/go-bank","owner":"raphaeldiscky","description":"Go-based web app with clean architecture ","archived":false,"fork":false,"pushed_at":"2025-05-11T04:52:46.000Z","size":35687,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-11T05:24:21.120Z","etag":null,"topics":["aws-ecr","aws-rds","aws-sdk","clean-architechture","docker","gin","go","grpc","kubernetes","paseto","postgres","redis","sqlc","swagger","viper"],"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/raphaeldiscky.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}},"created_at":"2023-08-11T06:27:03.000Z","updated_at":"2025-05-11T04:52:50.000Z","dependencies_parsed_at":"2025-05-11T05:32:02.851Z","dependency_job_id":null,"html_url":"https://github.com/raphaeldiscky/go-bank","commit_stats":null,"previous_names":["raphaeldiscky/go-bank"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/raphaeldiscky/go-bank","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raphaeldiscky%2Fgo-bank","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raphaeldiscky%2Fgo-bank/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raphaeldiscky%2Fgo-bank/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raphaeldiscky%2Fgo-bank/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/raphaeldiscky","download_url":"https://codeload.github.com/raphaeldiscky/go-bank/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raphaeldiscky%2Fgo-bank/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28509512,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-17T13:38:16.342Z","status":"ssl_error","status_checked_at":"2026-01-17T13:37:44.060Z","response_time":85,"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":["aws-ecr","aws-rds","aws-sdk","clean-architechture","docker","gin","go","grpc","kubernetes","paseto","postgres","redis","sqlc","swagger","viper"],"created_at":"2026-01-17T13:55:11.718Z","updated_at":"2026-01-17T13:55:11.774Z","avatar_url":"https://github.com/raphaeldiscky.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch1 align=\"center\"\u003eGo Bank\u003c/h1\u003e\n\nThis application is primarily intended for exploring technical concepts. My goal is to experiment with different technologies, software architecture designs, and all the essential components involved in building a monolithic-based application in Golang.\n\n## Features \n\n- Building RESTful APIs using the `Gin` framework for handling HTTP requests\n- Leveraging `gRPC` for efficient internal service-to-service communication\n- Secure authentication using `PASETO` tokens and `JWT`\n- Asynchronous task processing with `Redis` and `Asynq` for background processing\n- Reliable database operations with `PostgreSQL` and `pgx` driver\n- Type-safe database queries with `SQLC`\n- Database migrations using `golang-migrate`\n- Input validation using `go-playground/validator`\n- Structured logging with `zerolog`\n- Configuration management with `Viper`\n- Testing with `testify` for assertions and `gomock` for mocking\n- Containerized deployment with `Docker` and `docker-compose`\n- Deploying to production environments using `Kubernetes` on `AWS EKS`\n- Automatic SSL/TLS certificate management with `cert-manager` and `Let's Encrypt`\n- CI/CD pipeline with `GitHub Actions`\n\n## Technologies - Libraries\n\n\u003ch4\u003eCore Framework\u003c/h4\u003e\n\n- **[gin-gonic/gin](https://github.com/gin-gonic/gin)** - High-performance HTTP web framework\n- **[grpc-ecosystem/grpc-gateway](https://github.com/grpc-ecosystem/grpc-gateway)** - gRPC to JSON proxy\n\n\u003ch4\u003eDatabase \u0026 Migration\u003c/h4\u003e\n\n- **[jackc/pgx](https://github.com/jackc/pgx)** - PostgreSQL driver and toolkit\n- **[golang-migrate/migrate](https://github.com/golang-migrate/migrate)** - Database migrations\n- **[sqlc-dev/sqlc](https://github.com/sqlc-dev/sqlc)** - Type-safe SQL query builder\n\n\u003ch4\u003eValidation\u003c/h4\u003e\n\n- **[go-playground/validator](https://github.com/go-playground/validator)** - Go Struct and Field validation\n\n\u003ch4\u003eAuthentication \u0026 Security\u003c/h4\u003e\n\n- **[o1egl/paseto](https://github.com/o1egl/paseto)** - Platform-Agnostic Security Tokens\n- **[dgrijalva/jwt-go](https://github.com/dgrijalva/jwt-go)** - JSON Web Tokens\n- **[golang/crypto](https://github.com/golang/crypto)** - Cryptographic functions\n\n\u003ch4\u003eTask Processing\u003c/h4\u003e\n\n- **[hibiken/asynq](https://github.com/hibiken/asynq)** - Distributed task queue\n- **[redis/go-redis](https://github.com/redis/go-redis)** - Redis client\n\n\u003ch4\u003eLogging\u003c/h4\u003e\n\n- **[rs/zerolog](https://github.com/rs/zerolog)** - Zero-allocation JSON logger\n\n\u003ch4\u003eTesting \u0026 Mocking\u003c/h4\u003e\n\n- **[stretchr/testify](https://github.com/stretchr/testify)** - Testing toolkit\n- **[uber-go/mock](https://github.com/uber-go/mock)** - Mocking framework\n\n\u003ch4\u003eDocumentation\u003c/h4\u003e\n\n- **[Swagger](https://swagger.io/)** - API documentation with static files for Swagger UI\n- **[DBML](https://www.dbml.org/)** - Database Markup Language for visualizing database schema\n\n\u003ch4\u003eConfiguration \u0026 Environment\u003c/h4\u003e\n\n- **[spf13/viper](https://github.com/spf13/viper)** - Configuration solution\n\n\u003ch4\u003eDeployment \u0026 DevOps\u003c/h4\u003e\n\n- **[AWS EKS](https://aws.amazon.com/eks/)** - Managed Kubernetes service\n- **[Kubernetes](https://kubernetes.io/)** - Container orchestration\n- **[Docker](https://www.docker.com/)** - Container platform\n- **[Nginx Ingress Controller](https://kubernetes.github.io/ingress-nginx/)** - Kubernetes ingress controller\n- **[cert-manager](https://cert-manager.io/)** - Certificate management for Kubernetes\n- **[Let's Encrypt](https://letsencrypt.org/)** - Free SSL/TLS certificates\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fraphaeldiscky%2Fgo-bank","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fraphaeldiscky%2Fgo-bank","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fraphaeldiscky%2Fgo-bank/lists"}