This repository contains a minimal MkDocs configuration to build a docs site alongside the static website. The mkdocs.yml and docs/ folder are included.
- Install MkDocs and the Material theme (recommended):
python -m pip install mkdocs mkdocs-material- Serve locally:
mkdocs serve- Build static site:
mkdocs build -d site-docsYou can publish the docs with mkdocs gh-deploy or publish the site-docs directory to GitHub Pages. Alternatively, copy the Markdown files into the repository Wiki if you prefer a GitHub Wiki.
To push docs to the GitHub Wiki (separate repo), you can run:
git clone https://github.com/<owner>/<repo>.wiki.git wiki-repo
cp -r docs/* wiki-repo/
cd wiki-repo
git add .
git commit -m "Update wiki docs"
git push