mirror of
https://github.com/grafana/grafana.git
synced 2025-02-15 01:53:33 -06:00
17 lines
172 B
Makefile
17 lines
172 B
Makefile
all: deps build
|
|
|
|
deps:
|
|
go run build.go setup
|
|
npm install
|
|
|
|
build:
|
|
go run build.go build
|
|
npm run build
|
|
|
|
test:
|
|
go test -v ./pkg/...
|
|
npm test
|
|
|
|
run:
|
|
./bin/grafana-server
|