-
Notifications
You must be signed in to change notification settings - Fork 130
How to sideload the Documentation
Alon Yeshurun edited this page Mar 11, 2026
·
1 revision
This guide explains how to install dependencies, run the documentation locally, build versioned docs using mike, and sideload the generated site for validation or packaging.
Install everything needed for documentation:
uv sync --group devMkDocs includes a built‑in development server with live reload.
Start it with:
uv run mkdocs serveThis launches the docs at:
http://127.0.0.1:8000
If port 8000 is already in use:
uv run mkdocs serve -a 127.0.0.1:8001