Create a new virtual environment for Python. This can be skipped if you already have a working venv.
python -m venv venvActivate the venv and install or update dependencies.
source venv/bin/activate \\
pip install -r requirements.txtServe the documentation locally for live preview while developing:
mkdocs serveThis will run a local web server with the documentation accessible at http://127.0.0.1:8000/.
You can also build the website files directly:
mkdocs buildThe output will be saved to site/.