Categorygithub.com/BetterToPractice/go-echo-setup
repositorypackage
0.0.0-20231017113254-bbcf6c5b90cc
Repository: https://github.com/bettertopractice/go-echo-setup.git
Documentation: pkg.go.dev

# Packages

No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author

# README

Go Echo Setup

How To Run Application

docker-compose up -d --build
go run main.go runserver

or

# support live reload
go install github.com/cosmtrek/air@latest
# then run
air runserver

How to Run Migration

go run main.go migrate -e up

another script:

go run main.go makemigrations -f "create_new_migration_file"
go run main.go migrate -e up 0001
go run main.go migrate -e down
go run main.go migrate -e down 0001
go run main.go migrate -e undo

How to Generate Swagger

swag init --parseDependency --parseInternal