This is an example of implementation of Clean Architecture in Golang.
This project requires Go v1.20+ to run.
# Clone this project
$ git clone https://github.com/arvians-id/go-clean-architecture.git
# Move to project directory
$ cd go-clean-architecture
# Copy .env.example to .env
$ cp .env.example .env
# Install dependencies
$ go mod download
# or
$ go mod tidy
Please refer to the documentation for installation of migrate.
# Migrate tables
$ migrate -path database/postgres/migrations -database "postgres://root:[email protected]:5432/go_clean_architecture?sslmode=disable" up
To run application, you can use makefile's command or go run cmd/server/main.go
# Run database on docker
$ docker-compose up -d
# Run application
$ make run
# Execute the call with curl in another terminal
$ curl -X GET http://localhost:8080/api/users