GoLang : Gin + Postgres Boilerplate

Getting Started

STEP 1 - Create the database

go run main.go db:create

STEP 2 - Run migrations on the database

go run main.go db:migrate

STEP 3 - Run the server

go run main.go serve

(Optional) Drop the database

go run main.go db:drop