This is golang clean architecture template.
- External system perform request (HTTP, gRPC, Messaging, etc)
- The Delivery creates various Model from request data
- The Delivery calls Use Case, and execute it using Model data
- The Use Case create Entity data for the business logic
- The Use Case calls Repository, and execute it using Entity data
- The Repository use Entity data to perform database operation
- The Repository perform database operation to the database
- The Use Case create various Model for Gateway or from Entity data
- The Use Case calls Gateway, and execute it using Model data
- The Gateway using Model data to construct request to external system
- The Gateway perform request to external system (HTTP, gRPC, Messaging, etc)
- Golang : https://github.com/golang/go
- PostgreSQL (Database) : https://github.com/postgres/postgres
- Apache Kafka : https://github.com/apache/kafka
- GoFiber (HTTP Framework) : https://github.com/gofiber/fiber
- GORM (ORM) : https://github.com/go-gorm/gorm
- Viper (Configuration) : https://github.com/spf13/viper
- Golang Migrate (Database Migration) : https://github.com/golang-migrate/migrate
- Go Playground Validator (Validation) : https://github.com/go-playground/validator
- Logrus (Logger) : https://github.com/sirupsen/logrus
- Confluent Kafka Golang : https://github.com/confluentinc/confluent-kafka-go
- Air (Live Reload) : https://github.com/air-verse/air
- GoCritic : https://github.com/go-critic/go-critic
- GolangCI-Lint : https://github.com/golangci/golangci-lint
- GoSec : https://github.com/securego/gosec
- Migrate : https://github.com/golang-migrate/migrate
- Swaggo : https://github.com/swaggo/swag
All configuration is in config.example.json file. You can copy this file to config.json and modify it.
cp config.example.json config.jsonAll API Spec is in api folder.
All database migration is in db/migrations folder.
migrate create -ext sql -dir db/migrations create_table_xxxDATABASE_URL="postgres://postgres:5432@localhost/golang_clean_architecture?sslmode=disable" make migrate.upmake testmake run.webmake run.worker