Just building out a basic example hypermedia web framework that I can clone and use for other projects.
Feel free to use it if you want...
CREATE USER exampleapp WITH PASSWORD 'exampleapp';
CREATE DATABASE exampleapp OWNER exampleapp;
GRANT ALL PRIVILEGES ON DATABASE exampleapp TO exampleapp;
Creating new migrations
migrate create -dir ./db/migrations -seq -digits 3 -ext sql create_items_tableRunning migrations
migrate -source file://db/migrations -database $APP_DATABASE_URI up