The Bluebird Transport Management System backend is a complex golang microservice structured architecture interfaced with fiber for HTTP REST API and GRPC for inter services communication. This project delivered to one of the biggest public taxi transportation vendor in Indonesia that is going to expand their business domain into package shipment services. This backend part is architected with microservice architecture with up to 9 backend services, this backend is designed to be performant, scalable, and maintainable.
.
├── .vscode/ # VSCode configuration
├── assets/ # Static assets and configurations
├── cmd/ # Application entry points
│ ├── cron/ # Cron job commands
│ ├── database/ # Database related commands
│ ├── event/ # Event handling commands
│ ├── grpc/ # gRPC service commands
│ ├── http/ # HTTP service commands
│ └── start/ # Application startup commands
├── config/ # Configuration management
│ ├── file/
│ │ ├── config.local.yaml
│ │ └── config.local.yaml.example
│ └── config.go
├── docs/ # Generated Swagger documentation from Swaggo
│ ├── openapi.yaml # OpenAPI/Swagger documentation
│ └── swagger.json # Generated Swagger documentation
├── handler/ # Request handlers
│ ├── cron/ # Cron job handlers
│ ├── event/ # Event handlers
│ ├── grpc/ # gRPC service handlers
│ └── rest/ # REST API handlers
├── init/ # Initialization code
│ ├── assembler/ # Component assembly
│ ├── initiator/ # Service initialization
│ └── service/ # Definition of handler, repo, usecase, infrastructure, etc
├── internal/ # Internal packages
│ ├── app/
│ │ ├── integration/ # Public api to be consumed by another application
│ │ └── main/v1/ # Handler for REST and GRPC endpoints
│ ├── config/ # Internal configuration
│ ├── db/ # Database
│ │ ├── entity/ # Database entities
│ │ └── migration/ # Database migration sql files
│ └── domain/ # Domain logic includes dto, repository and usecase
├── resource/ # Additional resources, e.g. translation files
├── Dockerfile # Docker configuration
├── go.mod # Go module definition
├── go.sum # Go module checksums
├── main.go # Main application entry point
└── README.md # Project readme
- Directing the database structure and flow of specific cases like integration to Keycloak, Bluebird Notification Service, and client's partner KGX Shipment API.