[golang-migrate] (https://github.com/golang-migrate/migrate/blob/v4.16.2/database/postgres/TUTORIAL.md)
psql -h localhost -U postgres -w -c "create database example;"
export POSTGRESQL_URL='postgres://postgres:password@localhost:5432/example?sslmode=disable'
migrate create -ext sql -dir db/migrations -seq create_users_table
migrate -database ${POSTGRESQL_URL} -path db/migrations up
brew install golangci-lint
brew upgrade golangci-lint
go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.54.2
golangci-lint run
golangci-lint help linters