mirror of
https://github.com/grafana/grafana.git
synced 2026-08-18 09:05:04 -05:00
18 lines
198 B
Makefile
18 lines
198 B
Makefile
|
|
|
|
all: build
|
|
|
|
build:
|
|
go build -o bin/grafana .
|
|
|
|
lint:
|
|
@gofmt -w . && go tool vet pkg/**/*.go && echo "$(GOLINT)"
|
|
|
|
setup:
|
|
go get github.com/tools/godep
|
|
go install github.com/mattn/go-sqlite3
|
|
|
|
|
|
|
|
|