working prototype

This commit is contained in:
Xavier Henner
2019-08-16 17:23:19 +02:00
parent a82131c8c8
commit 9eff9ce803
23 changed files with 1029 additions and 303 deletions

21
Makefile Normal file
View File

@@ -0,0 +1,21 @@
all: build
build: fmt lint gobuild
deps: godeps
fmt: gofmt
lint: golint
test: gotest
gobuild:
statik -src=./web/
go build
godeps:
go get -v -u -t ./...
go get github.com/rakyll/statik
gofmt:
go fmt ./...
golint:
go vet ./...
gotest:
go test ./...