mirror of
https://github.com/grafana/grafana.git
synced 2025-02-15 01:53:33 -06:00
19 lines
217 B
Makefile
19 lines
217 B
Makefile
|
|
|
|
all: build
|
|
|
|
build:
|
|
go build -o bin/grafana .
|
|
go test ./pkg/...
|
|
|
|
lint:
|
|
@gofmt -w . && go tool vet pkg/**/*.go && echo "$(GOLINT)"
|
|
|
|
setup:
|
|
go get github.com/tools/godep
|
|
go install github.com/mattn/go-sqlite3
|
|
|
|
|
|
|
|
|