Skip to content

Latest commit

 

History

History
59 lines (45 loc) · 1.03 KB

README.md

File metadata and controls

59 lines (45 loc) · 1.03 KB

Golang Clean Architecture Boilerplate

Built with

  • Go
  • Fiber
  • MySQL
  • sqlx

Run in Development

Recommend run with devcontainer (extension in vscode)

go run .

Wanna use features?

you can use another extension feature in branch

git clone -b with-auth https://github.com/ChaiyapatOam/go-clean-fiber-boiler.git

switch to main branch

git branch -m with-auth main

force push main

git push --force origin main

Folder Structure

.
├── 📂config/
│ └── config.go
├── 📂controller/
│ └── user.controller.go
├── 📂db/
│ └── mysql.go
├── 📂domain/
│ └── user.go
├── 📂internal/
│ ├── 📂payload
│ └── 📂validator
├── 📂repository/
│ └── user.repository.go
├── go.mod
├── go.sum
├── main.go
└── README.md