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 ./...