This folder contains the documentation site for Dungeon Crawler Framework, built with MkDocs and the Material theme.
cd Docs
pip install -r requirements.txt
mkdocs serveThen open http://127.0.0.1:8000/ in your browser. The site rebuilds automatically as you edit files in docs/.
cd Docs
mkdocs build # output goes to Docs/site/A ready-made GitHub Actions workflow is provided at Docs/.github/workflows/deploy.yml.
- Move it to the repository root:
.github/workflows/deploy.yml. - In your GitHub repo, go to Settings → Pages → Build and deployment → Source and select GitHub Actions.
- Push to
main. Every change underDocs/**rebuilds and publishes the site tohttps://mantis3de.github.io/Dungeon Crawler Framework/.
Docs/
├── mkdocs.yml # site config + navigation
├── requirements.txt # python deps
├── docs/
│ ├── index.md # home
│ ├── getting-started/ # installation + 5-minute quick start
│ ├── editors/ # the five visual editors
│ ├── architecture.md # module diagram
│ ├── api.md # public API reference
│ ├── faq.md # Asset Store FAQ
│ └── changelog.md
└── .github/workflows/deploy.yml