glances/Makefile

64 lines
1.7 KiB
Makefile
Raw Normal View History

2018-12-27 09:10:26 +00:00
PORT?=8008
2021-06-12 07:42:02 +00:00
LASTTAG = $(shell git describe --tags --abbrev=0)
2018-12-27 09:10:26 +00:00
install:
sensible-browser "https://github.com/nicolargo/glances#installation"
2021-05-29 16:48:27 +00:00
venv-python:
virtualenv -p /usr/bin/python3 venv
2018-12-27 09:10:26 +00:00
2021-05-29 16:48:27 +00:00
venv-dev:
./venv/bin/pip install -r dev-requirements.txt
./venv/bin/pip install -r doc-requirements.txt
2018-12-27 09:10:26 +00:00
2021-05-29 16:48:27 +00:00
venv-dev-upgrade:
./venv/bin/pip install --upgrade -r dev-requirements.txt
./venv/bin/pip install --upgrade -r doc-requirements.txt
2021-04-11 08:39:30 +00:00
venv:
./venv/bin/pip install -r requirements.txt
./venv/bin/pip install -r optional-requirements.txt
venv-upgrade:
2021-05-29 16:48:27 +00:00
./venv/bin/pip install --upgrade -r dev-requirements.txt
./venv/bin/pip install --upgrade -r requirements.txt
./venv/bin/pip install --upgrade -r optional-requirements.txt
2021-06-12 07:42:02 +00:00
test: venv
./venv/bin/python ./unitest.py
./venv/bin/python ./unitest-restful.py
./venv/bin/python ./unitest-xmlrpc.py
2021-05-29 16:48:27 +00:00
docs: venv-dev
cd docs && ./build.sh
docs-server: docs
(sleep 2 && sensible-browser "http://localhost:$(PORT)") &
cd docs/_build/html/ && ./venv/bin/python -m SimpleHTTPServer $(PORT)
webui: venv-dev
cd glances/outputs/static/ && npm install && npm audit fix && npm run build
run: venv
./venv/bin/python -m glances -C ./conf/glances.conf
run-debug: venv
./venv/bin/python -m glances -C ./conf/glances.conf -d
run-webserver: venv
./venv/bin/python -m glances -C ./conf/glances.conf -w
run-server: venv
./venv/bin/python -m glances -C ./conf/glances.conf -s
run-client: venv
./venv/bin/python -m glances -C ./conf/glances.conf -c localhost
profiling: venv venv-dev
2021-06-05 15:40:47 +00:00
@echo "Please complete and run: sudo ./venv/bin/py-spy record -o ./docs/_static/glances-flame.svg -d 60 -s --pid <GLANCES PID>"
2021-06-12 07:42:02 +00:00
release-note:
2021-06-12 16:39:09 +00:00
git --no-pager log $(LASTTAG)..HEAD --first-parent --pretty=format:"* %s (by %an)"
2021-06-12 07:42:02 +00:00
2018-12-27 09:10:26 +00:00
.PHONY: test docs docs-server