Initial commit

This commit is contained in:
Adrian Macneil 2015-11-25 10:57:58 -08:00
commit 9cfc758ca1
14 changed files with 697 additions and 0 deletions

13
Makefile Normal file
View file

@ -0,0 +1,13 @@
DOCKER := docker-compose run dbmate
all: build lint test
build:
docker-compose build
lint:
$(DOCKER) golint ./...
$(DOCKER) go vet ./...
test:
$(DOCKER) go test ./...