The full documentation is available via GitHub Pages.
The easiest way to develop locally is using the VS Code Dev Container:
- Install Docker and VS Code
- Install the Dev Containers extension
- Open this repository in VS Code
- Click "Reopen in Container" when prompted
All dependencies will be automatically installed. See .devcontainer/README.md for more details.
To build the documentation locally without Docker:
# Install dependencies
pip install -r docs/requirements.txt
# Build the documentation
cd docs
sphinx-build -b html . _build/html
# View the documentation
# Open docs/_build/html/index.html in your browser