glances/Makefile

20 lines
401 B
Makefile
Raw Normal View History

2018-12-27 09:10:26 +00:00
PORT?=8008
install:
sensible-browser "https://github.com/nicolargo/glances#installation"
test:
./unitest-all.sh
docs:
cd docs && ./build.sh
docs-server: docs
(sleep 2 && sensible-browser "http://localhost:$(PORT)") &
cd docs/_build/html/ && python -m SimpleHTTPServer $(PORT)
2021-04-11 08:39:30 +00:00
webui:
cd glances/outputs/static/ && npm install && npm audit fix && npm run build
2018-12-27 09:10:26 +00:00
.PHONY: test docs docs-server