Makefile 315 B

12345678910111213141516171819202122232425262728
  1. all: deps build
  2. deps-go:
  3. go run build.go setup
  4. deps-js:
  5. yarn install --pure-lockfile --no-progress
  6. deps: deps-go deps-js
  7. build-go:
  8. go run build.go build
  9. build-js:
  10. npm run build
  11. build: build-go build-js
  12. test-go:
  13. go test -v ./pkg/...
  14. test-js:
  15. npm test
  16. test: test-go test-js
  17. run:
  18. ./bin/grafana-server