add basic Makefile, remove need for global grunt-cli

This commit is contained in:
Dan Cech
2016-04-25 12:44:26 -04:00
parent 29a2b2032a
commit 2244224b12
4 changed files with 20 additions and 4 deletions

17
Makefile Normal file
View File

@@ -0,0 +1,17 @@
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