summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornicolargo <nicolas@nicolargo.com>2021-06-13 10:49:01 +0200
committernicolargo <nicolas@nicolargo.com>2021-06-13 10:49:01 +0200
commitd4339de57ece46680b6703f22d2403d7d8f0d3da (patch)
treec357fdd03b64a9ed17b93fae03144ebf4334357d
parent4b87e979afdc06d98ed1b48da31e69eaa3a9fb94 (diff)
Add some tools to the Makefile
-rw-r--r--Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 0a6b594b..ebc54687 100644
--- a/Makefile
+++ b/Makefile
@@ -54,6 +54,15 @@ run-server: venv
run-client: venv
./venv/bin/python -m glances -C ./conf/glances.conf -c localhost
+run-browser: venv
+ ./venv/bin/python -m glances -C ./conf/glances.conf --browser
+
+show-version: venv
+ ./venv/bin/python -m glances -C ./conf/glances.conf -V
+
+show-issue: venv
+ ./venv/bin/python -m glances -C ./conf/glances.conf --issue
+
profiling: venv venv-dev
@echo "Please complete and run: sudo ./venv/bin/py-spy record -o ./docs/_static/glances-flame.svg -d 60 -s --pid <GLANCES PID>"