Notes is an example application, implementing a note taking service, for the purpose to demonstrating structuring a Go application.
This is not intended to be taken as gospel, but as a collection of patterns I can used in developing Go applications.
Setup the database with required tables:
migrate -database postgres://username:password@host/dbname?sslmode=disable -path migrations up
Install Go dependencies:
dep ensure -v
go run cmd/main.go