Makefile 219 B

123456789101112131415161718
  1. all: build
  2. build:
  3. go build -o bin/grafana .
  4. go test ./pkg/...
  5. lint:
  6. @gofmt -w pkg && go tool vet pkg/**/*.go && echo "$(GOLINT)"
  7. setup:
  8. go get github.com/tools/godep
  9. go install github.com/mattn/go-sqlite3