# MSCB documentation site

This directory contains the reorganized MSCB documentation as a MkDocs site using the Material theme.

## Build locally

```bash
cd mkdocs
python3 -m venv .venv
.venv/bin/pip install -r requirements.txt
.venv/bin/mkdocs serve
```

Open <http://127.0.0.1:8000/>. To perform a strict production build:

```bash
.venv/bin/mkdocs build --strict
```

The generated `site/` directory is intentionally excluded from the authored documentation.

