Tip
Read the manual: https://manual.121.global
-
Install a Python virtual environment (On Linux/macOS):
python3 -m venv venv source venv/bin/activate -
Install dependencies
pip install -r requirements.txt
-
Build the documentation (for each language separately):
-
For English, preview at: http://localhost:8000
mkdocs serve --config-file config/en/mkdocs.yml --dev-addr localhost:8000
-
For Dutch, preview at: http://localhost:8080
mkdocs serve --config-file config/nl/mkdocs.yml --dev-addr localhost:8080
-
For French, preview at: http://localhost:8003
mkdocs serve --config-file config/fr/mkdocs.yml --dev-addr localhost:8003
-
- Material for MkDocs: https://squidfunk.github.io/mkdocs-material/
- The Azure Static Web App config includes explicit CORS rules for
en/faq/*andfr/faq/*. - Reason: FAQ pages from this manual are embedded in a 510.global context (Using in-page JS, using
fetch().), soAccess-Control-Allow-Origin: https://510.globalmust remain instaticwebapp.config.jsonfor those routes.
- Repository-wide Copilot instructions for translation and ToC-anchor safety are in
.github/copilot-instructions.md. - Pull request guidance and translation/ToC checklists are in
.github/pull_request_template.md.