Like Prometheus, but for logs.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
loki/pkg/ui/frontend/Makefile

18 lines
193 B

.PHONY: build
build:
npm install
npm run build
.PHONY: dev
dev:
npm run dev
.PHONY: clean
clean:
rm -rf node_modules
rm -rf dist
.PHONY: check-deps
check-deps:
npx depcheck
npm audit