Golang PoC
go install -tags 'postgres' github.com/golang-migrate/migrate/v4/cmd/migrate@latest
asdf reshim
make db-migration name=your_migration_name
make db-migrate
make db-seed-file seed_name=your_seed_file_name_here
make db-seed
go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.58.1
golangci-lint run ./...
go install honnef.co/go/tools/cmd/staticcheck@latest
staticcheck ./...
go install -v github.com/go-critic/go-critic/cmd/gocritic@latest
gocritic check ./...
go vet ./...
go fmt ./...