summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authornicolargo <nicolashennion@gmail.com>2024-04-29 10:01:24 +0200
committernicolargo <nicolashennion@gmail.com>2024-04-29 10:01:24 +0200
commit1cd17d9614f2562d89596e7ba0daaa862dc3c6ed (patch)
tree66769e967f168ab4c338ad76c1f4249fe3e8faaf /Makefile
parent7f34ec820bde5b8c778b9b753ab8d9ad654020d5 (diff)
Add the --hide-public-info option
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 06423368..e49c5301 100644
--- a/Makefile
+++ b/Makefile
@@ -223,6 +223,9 @@ run-debug: ## Start Glances in debug console mode (also called standalone)
run-local-conf: ## Start Glances in console mode with the system conf file
./venv/bin/python -m glances
+run-local-conf-hide-public: ## Start Glances in console mode with the system conf file and hide public information
+ ./venv/bin/python -m glances --hide-public-info
+
run-min: ## Start minimal Glances in console mode (also called standalone)
./venv-min/bin/python -m glances -C ./conf/glances.conf
@@ -256,6 +259,9 @@ run-webserver: ## Start Glances in Web server mode
run-webserver-local-conf: ## Start Glances in Web server mode with the system conf file
./venv/bin/python -m glances -w
+run-webserver-local-conf-hide-public: ## Start Glances in Web server mode with the system conf file and hide public info
+ ./venv/bin/python -m glances -w --hide-public-info
+
run-restapiserver: ## Start Glances in REST API server mode
./venv/bin/python -m glances -C ./conf/glances.conf -w --disable-webui