/notes

Example Go Application

Primary LanguageGo

Notes

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.

Requirements

Getting Started

Setup the database with required tables:

migrate -database postgres://username:password@host/dbname?sslmode=disable -path migrations up

Install Go dependencies:

dep ensure -v

Running

go run cmd/main.go