mirror of
https://github.com/grafana/grafana.git
synced 2024-11-22 17:06:57 -06:00
18 lines
193 B
Makefile
18 lines
193 B
Makefile
all: deps build
|
|
|
|
deps:
|
|
go run build.go setup
|
|
godep restore
|
|
npm install
|
|
|
|
build:
|
|
go run build.go build
|
|
npm run build
|
|
|
|
test:
|
|
godep go test -v ./pkg/...
|
|
npm test
|
|
|
|
run:
|
|
./bin/grafana-server
|