mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
18 lines
197 B
Makefile
18 lines
197 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 run test
|
||
|
|
||
|
run:
|
||
|
./bin/grafana-server
|