mirror of
https://github.com/grafana/grafana.git
synced 2024-11-25 18:30:41 -06:00
19 lines
219 B
Makefile
19 lines
219 B
Makefile
|
|
|
|
all: build
|
|
|
|
build:
|
|
go build -o bin/grafana .
|
|
go test ./pkg/...
|
|
|
|
lint:
|
|
@gofmt -w pkg && go tool vet pkg/**/*.go && echo "$(GOLINT)"
|
|
|
|
setup:
|
|
go get github.com/tools/godep
|
|
go install github.com/mattn/go-sqlite3
|
|
|
|
|
|
|
|
|