Documentation Guide
This project uses MkDocs to build and publish documentation. Follow the steps below to update and deploy the docs.
How to locally build and push a documentation update
-
Clone the repository (if not already done):
bash git clone https://github.com/yourusername/yourrepo.git cd yourrepo -
Install MkDocs:
bash pip install mkdocs mkdocs-material -
Edit or update the Markdown files inside the
docs/folder. -
Preview changes locally:
bash mkdocs serveOpen your browser at http://127.0.0.1:8000 to see the live preview.
-
Build the documentation site:
bash mkdocs build -
Deploy (GitHub Pages example):
bash mkdocs gh-deploy
Commands
mkdocs serve→ Start the live-reloading docs server\mkdocs build→ Build the documentation site\mkdocs gh-deploy→ Deploy to GitHub Pages