Merge pull request #2907 from ariel-anieli/refactorize-makefile

Refactorize `Makefile`
pull/2911/head
RazCrimson 2024-08-07 18:40:39 +05:30 committed by GitHub
commit 69f4a5fe24
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 92 additions and 71 deletions

161
Makefile
View File

@ -1,12 +1,35 @@
PORT?=8008 PORT ?= 8008
LASTTAG = $(shell git describe --tags --abbrev=0) VENV := venv/bin
VENV_DEV := venv-dev/bin
VENV_MIN := venv-min/bin
CONF := conf/glances.conf
PIP := $(VENV)/pip
PYTHON := $(VENV)/python
UNITTEST := unittest
DOCKER_BUILD := docker buildx build
DOCKER_RUN := docker run
DOCKERFILE_UBUNTU := docker-files/ubuntu.Dockerfile
DOCKERFILE_ALPINE := docker-files/alpine.Dockerfile
PODMAN_SOCK ?= /run/user/$(shell id -u)/podman/podman.sock
DOCKER_SOCK ?= /var/run/docker.sock
DOCKER_SOCKS := -v $(PODMAN_SOCK):$(PODMAN_SOCK):ro -v $(DOCKER_SOCK):$(DOCKER_SOCK):ro
DOCKER_OPTS := --rm -e TZ="${TZ}" -e GLANCES_OPT="" --pid host --network host
LASTTAG = $(shell git describe --tags --abbrev=0)
# if the command is only `make`, the default tasks will be the printing of the help. # if the command is only `make`, the default tasks will be the printing of the help.
.DEFAULT_GOAL := help .DEFAULT_GOAL := help
.PHONY: help .PHONY: help test docs docs-server venv venv-min venv-dev
help: ## List all make commands available help: ## List all make commands available
@grep -E '^[\.a-zA-Z_%-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk -F ":" '{print $1}' | grep -v % | sed 's/\\//g' | sort | awk 'BEGIN {FS = ":[^:]*?##"}; {printf "\033[1;34mmake %-50s\033[0m %s\n", $$1, $$2}' @grep -E '^[\.a-zA-Z_%-]+:.*?## .*$$' $(MAKEFILE_LIST) | \
awk -F ":" '{print $1}' | \
grep -v % | \
sed 's/\\//g' | \
sort | \
awk 'BEGIN {FS = ":[^:]*?##"}; {printf "\033[1;34mmake %-50s\033[0m %s\n", $$1, $$2}'
# =================================================================== # ===================================================================
# Virtualenv # Virtualenv
@ -24,13 +47,13 @@ venv-full-python: ## Install Python 3 venv
virtualenv -p /usr/bin/python3 venv virtualenv -p /usr/bin/python3 venv
venv-full: venv-python ## Install Python 3 run-time dependencies venv-full: venv-python ## Install Python 3 run-time dependencies
./venv/bin/pip install -r requirements.txt $(PIP) install -r requirements.txt
./venv/bin/pip install -r optional-requirements.txt $(PIP) install -r optional-requirements.txt
venv-full-upgrade: ## Upgrade Python 3 run-time dependencies venv-full-upgrade: ## Upgrade Python 3 run-time dependencies
./venv/bin/pip install --upgrade pip $(PIP) install --upgrade pip
./venv/bin/pip install --upgrade -r requirements.txt $(PIP) install --upgrade -r requirements.txt
./venv/bin/pip install --upgrade -r optional-requirements.txt $(PIP) install --upgrade -r optional-requirements.txt
# For minimal installation (without optional dependencies) # For minimal installation (without optional dependencies)
@ -38,11 +61,11 @@ venv-min-python: ## Install Python 3 venv minimal
virtualenv -p /usr/bin/python3 venv-min virtualenv -p /usr/bin/python3 venv-min
venv-min: venv-min-python ## Install Python 3 minimal run-time dependencies venv-min: venv-min-python ## Install Python 3 minimal run-time dependencies
./venv-min/bin/pip install -r requirements.txt $(VENV_MIN)/pip install -r requirements.txt
venv-min-upgrade: ## Upgrade Python 3 minimal run-time dependencies venv-min-upgrade: ## Upgrade Python 3 minimal run-time dependencies
./venv-min/bin/pip install --upgrade pip $(VENV_MIN)/pip install --upgrade pip
./venv-min/bin/pip install --upgrade -r requirements.txt $(VENV_MIN)/pip install --upgrade -r requirements.txt
# For development # For development
@ -50,91 +73,91 @@ venv-dev-python: ## Install Python 3 venv
virtualenv -p /usr/bin/python3 venv-dev virtualenv -p /usr/bin/python3 venv-dev
venv-dev: venv-python ## Install Python 3 dev dependencies venv-dev: venv-python ## Install Python 3 dev dependencies
./venv-dev/bin/pip install -r dev-requirements.txt $(VENV_DEV)/pip install -r dev-requirements.txt
./venv-dev/bin/pip install -r doc-requirements.txt $(VENV_DEV)/pip install -r doc-requirements.txt
./venv-dev/bin/pre-commit install --hook-type pre-commit $(VENV_DEV)/pre-commit install --hook-type pre-commit
venv-dev-upgrade: ## Upgrade Python 3 dev dependencies venv-dev-upgrade: ## Upgrade Python 3 dev dependencies
./venv-dev/bin/pip install --upgrade pip $(VENV_DEV)/pip install --upgrade pip
./venv-dev/bin/pip install --upgrade -r dev-requirements.txt $(VENV_DEV)/pip install --upgrade -r dev-requirements.txt
./venv-dev/bin/pip install --upgrade -r doc-requirements.txt $(VENV_DEV)/pip install --upgrade -r doc-requirements.txt
# =================================================================== # ===================================================================
# Tests # Tests
# =================================================================== # ===================================================================
test-core: ## Run core unit tests test-core: ## Run core unit tests
./venv/bin/python ./unittest-core.py $(PYTHON) $(UNITTEST)-core.py
test-restful: ## Run Restful unit tests test-restful: ## Run Restful unit tests
./venv/bin/python ./unittest-restful.py $(PYTHON) $(UNITTEST)-restful.py
test-xmlrpc: ## Run XMLRPC unit tests test-xmlrpc: ## Run XMLRPC unit tests
./venv/bin/python ./unittest-xmlrpc.py $(PYTHON) $(UNITTEST)-xmlrpc.py
test: test-core test-restful test-xmlrpc ## Run unit tests test: test-core test-restful test-xmlrpc ## Run unit tests
test-with-upgrade: venv-upgrade venv-dev-upgrade test ## Upgrade deps and run unit tests test-with-upgrade: venv-upgrade venv-dev-upgrade test ## Upgrade deps and run unit tests
test-min: ## Run core unit tests in minimal environment test-min: ## Run core unit tests in minimal environment
./venv-min/bin/python ./unittest-core.py $(VENV_MIN)/python $(UNITTEST)-core.py
test-min-with-upgrade: venv-min-upgrade ## Upgrade deps and run unit tests in minimal environment test-min-with-upgrade: venv-min-upgrade ## Upgrade deps and run unit tests in minimal environment
./venv-min/bin/python ./unittest-core.py $(VENV_MIN)/python $(UNITTEST)-core.py
# =================================================================== # ===================================================================
# Linters, profilers and cyber security # Linters, profilers and cyber security
# =================================================================== # ===================================================================
format: ## Format the code format: ## Format the code
./venv-dev/bin/python -m ruff format . $(VENV_DEV)/python -m ruff format .
lint: ## Lint the code. lint: ## Lint the code.
./venv-dev/bin/python -m ruff check . --fix $(VENV_DEV)/python -m ruff check . --fix
codespell: ## Run codespell to fix common misspellings in text files codespell: ## Run codespell to fix common misspellings in text files
./venv-dev/bin/codespell -S .git,./docs/_build,./Glances.egg-info,./venv*,./glances/outputs,*.svg -L hart,bu,te,statics -w $(VENV_DEV)/codespell -S .git,./docs/_build,./Glances.egg-info,./venv*,./glances/outputs,*.svg -L hart,bu,te,statics -w
semgrep: ## Run semgrep to find bugs and enforce code standards semgrep: ## Run semgrep to find bugs and enforce code standards
./venv-dev/bin/semgrep scan --config=auto $(VENV_DEV)/semgrep scan --config=auto
profiling-gprof: ## Callgraph profiling (need "apt install graphviz") profiling-gprof: ## Callgraph profiling (need "apt install graphviz")
@echo "Start Glances for 30 iterations (more or less 1 mins, please do not exit !)" @echo "Start Glances for 30 iterations (more or less 1 mins, please do not exit !)"
sleep 3 sleep 3
./venv/bin/python -m cProfile -o ./glances.cprof ./run.py --stop-after 30 $(PYTHON) -m cProfile -o ./glances.cprof ./run.py --stop-after 30
./venv-dev/bin/gprof2dot -f pstats ./glances.cprof | dot -Tsvg -o ./docs/_static/glances-cgraph.svg $(VENV_DEV)/gprof2dot -f pstats ./glances.cprof | dot -Tsvg -o ./docs/_static/glances-cgraph.svg
rm -f ./glances.cprof rm -f ./glances.cprof
profiling-pyinstrument: ## PyInstrument profiling profiling-pyinstrument: ## PyInstrument profiling
@echo "Start Glances for 30 iterations (more or less 1 mins, please do not exit !)" @echo "Start Glances for 30 iterations (more or less 1 mins, please do not exit !)"
sleep 3 sleep 3
./venv/bin/pip install pyinstrument $(PIP) install pyinstrument
./venv/bin/python -m pyinstrument -r html -o ./docs/_static/glances-pyinstrument.html -m glances --stop-after 30 $(PYTHON) -m pyinstrument -r html -o ./docs/_static/glances-pyinstrument.html -m glances --stop-after 30
profiling-pyspy: ## Flame profiling (currently not compatible with Python 3.12) profiling-pyspy: ## Flame profiling (currently not compatible with Python 3.12)
@echo "Start Glances for 30 iterations (more or less 1 mins, please do not exit !)" @echo "Start Glances for 30 iterations (more or less 1 mins, please do not exit !)"
sleep 3 sleep 3
./venv-dev/bin/py-spy record -o ./docs/_static/glances-flame.svg -d 60 -s -- ./venv/bin/python ./run.py --stop-after 30 $(VENV_DEV)/py-spy record -o ./docs/_static/glances-flame.svg -d 60 -s -- $(PYTHON) ./run.py --stop-after 30
profiling: profiling-gprof profiling-pyinstrument profiling-pyspy ## Profiling of the Glances software profiling: profiling-gprof profiling-pyinstrument profiling-pyspy ## Profiling of the Glances software
trace-malloc: ## Trace the malloc() calls trace-malloc: ## Trace the malloc() calls
@echo "Malloc test is running, please wait ~30 secondes..." @echo "Malloc test is running, please wait ~30 secondes..."
./venv/bin/python -m glances -C ./conf/glances.conf --trace-malloc --stop-after 15 --quiet $(PYTHON) -m glances -C $(CONF) --trace-malloc --stop-after 15 --quiet
memory-leak: ## Profile memory leaks memory-leak: ## Profile memory leaks
./venv/bin/python -m glances -C ./conf/glances.conf --memory-leak $(PYTHON) -m glances -C $(CONF) --memory-leak
memory-profiling: ## Profile memory usage memory-profiling: ## Profile memory usage
@echo "It's a very long test (~4 hours)..." @echo "It's a very long test (~4 hours)..."
rm -f mprofile_*.dat rm -f mprofile_*.dat
@echo "1/2 - Start memory profiling with the history option enable" @echo "1/2 - Start memory profiling with the history option enable"
./venv-dev/bin/mprof run -T 1 -C run.py -C ./conf/glances.conf --stop-after 2400 --quiet $(VENV_DEV)/mprof run -T 1 -C run.py -C $(CONF) --stop-after 2400 --quiet
./venv-dev/bin/mprof plot --output ./docs/_static/glances-memory-profiling-with-history.png $(VENV_DEV)/mprof plot --output ./docs/_static/glances-memory-profiling-with-history.png
rm -f mprofile_*.dat rm -f mprofile_*.dat
@echo "2/2 - Start memory profiling with the history option disable" @echo "2/2 - Start memory profiling with the history option disable"
./venv-dev/bin/mprof run -T 1 -C run.py -C ./conf/glances.conf --disable-history --stop-after 2400 --quiet $(VENV_DEV)/mprof run -T 1 -C run.py -C $(CONF) --disable-history --stop-after 2400 --quiet
./venv-dev/bin/mprof plot --output ./docs/_static/glances-memory-profiling-without-history.png $(VENV_DEV)/mprof plot --output ./docs/_static/glances-memory-profiling-without-history.png
rm -f mprofile_*.dat rm -f mprofile_*.dat
# Trivy installation: https://aquasecurity.github.io/trivy/latest/getting-started/installation/ # Trivy installation: https://aquasecurity.github.io/trivy/latest/getting-started/installation/
@ -146,7 +169,7 @@ trivy: ## Run Trivy to find vulnerabilities in container images
# =================================================================== # ===================================================================
docs: ## Create the documentation docs: ## Create the documentation
./venv/bin/python -m glances -C ./conf/glances.conf --api-doc > ./docs/api.rst $(PYTHON) -m glances -C $(CONF) --api-doc > ./docs/api.rst
cd docs && ./build.sh && cd .. cd docs && ./build.sh && cd ..
docs-server: docs ## Start a Web server to serve the documentation docs-server: docs ## Start a Web server to serve the documentation
@ -181,7 +204,7 @@ webui-audit-fix: ## Fix audit the Web UI
flatpak: venv-dev-upgrade ## Generate FlatPack JSON file flatpak: venv-dev-upgrade ## Generate FlatPack JSON file
git clone https://github.com/flatpak/flatpak-builder-tools.git git clone https://github.com/flatpak/flatpak-builder-tools.git
./venv/bin/python ./flatpak-builder-tools/pip/flatpak-pip-generator glances $(PYTHON) ./flatpak-builder-tools/pip/flatpak-pip-generator glances
rm -rf ./flatpak-builder-tools rm -rf ./flatpak-builder-tools
@echo "Now follow: https://github.com/flathub/flathub/wiki/App-Submission" @echo "Now follow: https://github.com/flathub/flathub/wiki/App-Submission"
@ -201,91 +224,91 @@ docker: docker-alpine docker-ubuntu ## Generate local docker images
docker-alpine: docker-alpine-full docker-alpine-minimal docker-alpine-dev ## Generate local docker images (Alpine) docker-alpine: docker-alpine-full docker-alpine-minimal docker-alpine-dev ## Generate local docker images (Alpine)
docker-alpine-full: ## Generate local docker image (Alpine full) docker-alpine-full: ## Generate local docker image (Alpine full)
docker buildx build --target full -f ./docker-files/alpine.Dockerfile -t glances:local-alpine-full . $(DOCKER_BUILD) --target full -f $(DOCKERFILE_ALPINE) -t glances:local-alpine-full .
docker-alpine-minimal: ## Generate local docker image (Alpine minimal) docker-alpine-minimal: ## Generate local docker image (Alpine minimal)
docker buildx build --target minimal -f ./docker-files/alpine.Dockerfile -t glances:local-alpine-minimal . $(DOCKER_BUILD) --target minimal -f $(DOCKERFILE_ALPINE) -t glances:local-alpine-minimal .
docker-alpine-dev: ## Generate local docker image (Alpine dev) docker-alpine-dev: ## Generate local docker image (Alpine dev)
docker buildx build --target dev -f ./docker-files/alpine.Dockerfile -t glances:local-alpine-dev . $(DOCKER_BUILD) --target dev -f $(DOCKERFILE_ALPINE) -t glances:local-alpine-dev .
docker-ubuntu: docker-ubuntu-full docker-ubuntu-minimal docker-ubuntu-dev ## Generate local docker images (Ubuntu) docker-ubuntu: docker-ubuntu-full docker-ubuntu-minimal docker-ubuntu-dev ## Generate local docker images (Ubuntu)
docker-ubuntu-full: ## Generate local docker image (Ubuntu full) docker-ubuntu-full: ## Generate local docker image (Ubuntu full)
docker buildx build --target full -f ./docker-files/ubuntu.Dockerfile -t glances:local-ubuntu-full . $(DOCKER_BUILD) --target full -f $(DOCKERFILE_UBUNTU) -t glances:local-ubuntu-full .
docker-ubuntu-minimal: ## Generate local docker image (Ubuntu minimal) docker-ubuntu-minimal: ## Generate local docker image (Ubuntu minimal)
docker buildx build --target minimal -f ./docker-files/ubuntu.Dockerfile -t glances:local-ubuntu-minimal . $(DOCKER_BUILD) --target minimal -f $(DOCKERFILE_UBUNTU) -t glances:local-ubuntu-minimal .
docker-ubuntu-dev: ## Generate local docker image (Ubuntu dev) docker-ubuntu-dev: ## Generate local docker image (Ubuntu dev)
docker buildx build --target dev -f ./docker-files/ubuntu.Dockerfile -t glances:local-ubuntu-dev . $(DOCKER_BUILD) --target dev -f $(DOCKERFILE_UBUNTU) -t glances:local-ubuntu-dev .
# =================================================================== # ===================================================================
# Run # Run
# =================================================================== # ===================================================================
run: ## Start Glances in console mode (also called standalone) run: ## Start Glances in console mode (also called standalone)
./venv/bin/python -m glances -C ./conf/glances.conf $(PYTHON) -m glances -C $(CONF)
run-debug: ## Start Glances in debug console mode (also called standalone) run-debug: ## Start Glances in debug console mode (also called standalone)
./venv/bin/python -m glances -C ./conf/glances.conf -d $(PYTHON) -m glances -C $(CONF) -d
run-local-conf: ## Start Glances in console mode with the system conf file run-local-conf: ## Start Glances in console mode with the system conf file
./venv/bin/python -m glances $(PYTHON) -m glances
run-local-conf-hide-public: ## Start Glances in console mode with the system conf file and hide public information 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 $(PYTHON) -m glances --hide-public-info
run-min: ## Start minimal Glances in console mode (also called standalone) run-min: ## Start minimal Glances in console mode (also called standalone)
./venv-min/bin/python -m glances -C ./conf/glances.conf $(VENV_MIN)/python -m glances -C $(CONF)
run-min-debug: ## Start minimal Glances in debug console mode (also called standalone) run-min-debug: ## Start minimal Glances in debug console mode (also called standalone)
./venv-min/bin/python -m glances -C ./conf/glances.conf -d $(VENV_MIN)/python -m glances -C $(CONF) -d
run-min-local-conf: ## Start minimal Glances in console mode with the system conf file run-min-local-conf: ## Start minimal Glances in console mode with the system conf file
./venv-min/bin/python -m glances $(VENV_MIN)/python -m glances
run-docker-alpine-minimal: ## Start Glances Alpine Docker minimal in console mode run-docker-alpine-minimal: ## Start Glances Alpine Docker minimal in console mode
docker run --rm -e TZ="${TZ}" -e GLANCES_OPT="" -v /run/user/1000/podman/podman.sock:/run/user/1000/podman/podman.sock:ro -v /var/run/docker.sock:/var/run/docker.sock:ro --pid host --network host -it glances:local-alpine-minimal $(DOCKER_RUN) $(DOCKER_OPTS) $(DOCKER_SOCKS) -it glances:local-alpine-minimal
run-docker-alpine-full: ## Start Glances Alpine Docker full in console mode run-docker-alpine-full: ## Start Glances Alpine Docker full in console mode
docker run --rm -e TZ="${TZ}" -e GLANCES_OPT="" -v /run/user/1000/podman/podman.sock:/run/user/1000/podman/podman.sock:ro -v /var/run/docker.sock:/var/run/docker.sock:ro --pid host --network host -it glances:local-alpine-full $(DOCKER_RUN) $(DOCKER_OPTS) $(DOCKER_SOCKS) -it glances:local-alpine-full
run-docker-alpine-dev: ## Start Glances Alpine Docker dev in console mode run-docker-alpine-dev: ## Start Glances Alpine Docker dev in console mode
docker run --rm -e TZ="${TZ}" -e GLANCES_OPT="" -v /run/user/1000/podman/podman.sock:/run/user/1000/podman/podman.sock:ro -v /var/run/docker.sock:/var/run/docker.sock:ro --pid host --network host -it glances:local-alpine-dev $(DOCKER_RUN) $(DOCKER_OPTS) $(DOCKER_SOCKS) -it glances:local-alpine-dev
run-docker-ubuntu-minimal: ## Start Glances Ubuntu Docker minimal in console mode run-docker-ubuntu-minimal: ## Start Glances Ubuntu Docker minimal in console mode
docker run --rm -e TZ="${TZ}" -e GLANCES_OPT="" -v /run/user/1000/podman/podman.sock:/run/user/1000/podman/podman.sock:ro -v /var/run/docker.sock:/var/run/docker.sock:ro --pid host --network host -it glances:local-ubuntu-minimal $(DOCKER_RUN) $(DOCKER_OPTS) $(DOCKER_SOCKS) -it glances:local-ubuntu-minimal
run-docker-ubuntu-full: ## Start Glances Ubuntu Docker full in console mode run-docker-ubuntu-full: ## Start Glances Ubuntu Docker full in console mode
docker run --rm -e TZ="${TZ}" -e GLANCES_OPT="" -v /run/user/1000/podman/podman.sock:/run/user/1000/podman/podman.sock:ro -v /var/run/docker.sock:/var/run/docker.sock:ro --pid host --network host -it glances:local-ubuntu-full $(DOCKER_RUN) $(DOCKER_OPTS) $(DOCKER_SOCKS) -it glances:local-ubuntu-full
run-docker-ubuntu-dev: ## Start Glances Ubuntu Docker dev in console mode run-docker-ubuntu-dev: ## Start Glances Ubuntu Docker dev in console mode
docker run --rm -e TZ="${TZ}" -e GLANCES_OPT="" -v /run/user/1000/podman/podman.sock:/run/user/1000/podman/podman.sock:ro -v /var/run/docker.sock:/var/run/docker.sock:ro --pid host --network host -it glances:local-ubuntu-dev $(DOCKER_RUN) $(DOCKER_OPTS) $(DOCKER_SOCKS) -it glances:local-ubuntu-dev
run-webserver: ## Start Glances in Web server mode run-webserver: ## Start Glances in Web server mode
./venv/bin/python -m glances -C ./conf/glances.conf -w $(PYTHON) -m glances -C $(CONF) -w
run-webserver-local-conf: ## Start Glances in Web server mode with the system conf file run-webserver-local-conf: ## Start Glances in Web server mode with the system conf file
./venv/bin/python -m glances -w $(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 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 $(PYTHON) -m glances -w --hide-public-info
run-restapiserver: ## Start Glances in REST API server mode run-restapiserver: ## Start Glances in REST API server mode
./venv/bin/python -m glances -C ./conf/glances.conf -w --disable-webui $(PYTHON) -m glances -C $(CONF) -w --disable-webui
run-server: ## Start Glances in server mode (RPC) run-server: ## Start Glances in server mode (RPC)
./venv/bin/python -m glances -C ./conf/glances.conf -s $(PYTHON) -m glances -C $(CONF) -s
run-client: ## Start Glances in client mode (RPC) run-client: ## Start Glances in client mode (RPC)
./venv/bin/python -m glances -C ./conf/glances.conf -c localhost $(PYTHON) -m glances -C $(CONF) -c localhost
run-browser: ## Start Glances in browser mode (RPC) run-browser: ## Start Glances in browser mode (RPC)
./venv/bin/python -m glances -C ./conf/glances.conf --browser $(PYTHON) -m glances -C $(CONF) --browser
run-issue: ## Start Glances in issue mode run-issue: ## Start Glances in issue mode
./venv/bin/python -m glances -C ./conf/glances.conf --issue $(PYTHON) -m glances -C $(CONF) --issue
run-multipass: ## Install and start Glances in a VM (only available on Ubuntu with multipass already installed) run-multipass: ## Install and start Glances in a VM (only available on Ubuntu with multipass already installed)
multipass launch -n glances-on-lts lts multipass launch -n glances-on-lts lts
@ -295,6 +318,4 @@ run-multipass: ## Install and start Glances in a VM (only available on Ubuntu wi
multipass delete glances-on-lts multipass delete glances-on-lts
show-version: ## Show Glances version number show-version: ## Show Glances version number
./venv/bin/python -m glances -C ./conf/glances.conf -V $(PYTHON) -m glances -C $(CONF) -V
.PHONY: test docs docs-server venv venv-min venv-dev

View File

@ -43,7 +43,7 @@ will change the root API URL to ``http://localhost:61208/glances/api/4`` and the
API documentation URL API documentation URL
--------------------- ---------------------
The API documentation is embeded in the server and available at the following URL: The API documentation is embedded in the server and available at the following URL:
``http://localhost:61208/docs#/``. ``http://localhost:61208/docs#/``.
WebUI refresh WebUI refresh