Documentation Update Guide
Brief description: How to update this MkDocs documentation.
Local Development
Setup
# Clone repository
git clone https://github.com/dmaljkovic/proxmox-lab.git
cd proxmox-lab
# Install dependencies
pip install -r requirements.txt
# Serve locally
mkdocs serve
Making Changes
- Edit files in
docs/directory - Preview at http://localhost:8000
- Build:
mkdocs build
Publishing
GitHub Actions will automatically deploy to GitHub Pages.
Adding New Pages
- Create
.mdfile in appropriatedocs/subdirectory - Add entry to
mkdocs.ymlnav section - Follow existing format
Verification
- [ ] Local development setup working
- [ ] Can build site locally
- [ ] GitHub Actions deploying successfully