This repository contains the documentation for my home design project. The documentation is built using MkDocs.
poetry run mkdocs serve
# Open http://127.0.0.1:8000 in your browser
Or use a specific port:
poetry run mkdocs serve -a 127.0.0.1:8001
To build the static site:
poetry run mkdocs build
# Output: site/
poetry run mkdocs gh-deploy
GitHub Pages must be enabled in the repo settings (branch:
gh-pages
).
PDF export is disabled by default to speed up builds. To export PDFs explicitly:
EXPORT_PDF=true poetry run mkdocs build
# Outputs: site/pdf/kart-documentation.pdf
main
→ Markdown sourcegh-pages
→ Auto-generated static site (read-only)
Do all edits on main
.