This is a quick start based on Gin.
- swagger gen example codes
- run Gin server with packages and middlewares
- modify ./resources/openapi.yaml
- bin/gen_swagger_server.sh
- source bin/configuration.sh
- bin/run_gin_swagger.sh # go run tests/main.go
- access swagger: http://localhost:9000/swagger/index.html
- upgrade shell scripts
- example: tests/test_main/main.go
- api: Swagger groups
- service: HTTP path and function
- domain: business codes related to service
- po: persitence object related to db
- db
api -- service -- domain -- po -- db
- init: load OS env and prepare
- pkg: extension methods
- remote: remote services
go mod init github.com/Song2017/startup
go mod tidy
export GOPROXY=https://goproxy.io
dlv debug server/main.go
b path:line