NPM must be installed (ref. Download Node.js):
node -v
npm -vTask (taskfile.dev) is used to simplify the commands and unify with the CI/CD pipelines:
npm install -g @go-task/cliPython3 must be installed with pip and venv:
python --version
sudo apt install python3-pip
sudo apt install python3-venvCreate a virtual environment for running Python:
python3 -m venv .venv
source .venv/bin/activatePackages and binaries are required:
task setupLint the code with:
task lintPresentations are build with:
Presentation powered by MkDocs.
Start a local web server:
task docs:serveOpen the documentation on 127.0.0.1:8000.
MkDocs configuration is read from mkdocs.yml.