This directory contains the documentation for Lance, built with MkDocs and Material theme.
-
Install uv if you haven't already:
curl -LsSf https://astral.sh/uv/install.sh | sh -
That's it! No manual dependency installation needed.
To build and serve the documentation locally:
make serveThe documentation will be available at http://localhost:8000
make buildThis will create a site/ directory with the built documentation.
# Add a dependency and update pyproject.toml
uv add <package>
# Add a dev dependency
uv add --dev <package>make sync# Upgrade a specific package
uv add <package>@latest
# Upgrade all dependencies
uv sync --upgradesrc/- Source markdown files for documentationmkdocs.yml- MkDocs configurationpyproject.toml- Python project configuration (uv compatible)