# xly ERP Framework Wiki This repository contains both language versions of the xly ERP framework wiki. ```text xly-wiki/ ├── en/ English MkDocs project ├── zh/ Simplified Chinese MkDocs project └── site/ shared generated output, ignored by git ``` ## Build ```bash .venv/bin/mkdocs build -f en/mkdocs.yml .venv/bin/mkdocs build -f zh/mkdocs.yml ``` This writes: ```text site/en/ site/zh/ ``` ## Serve Locally Run either language directly: ```bash .venv/bin/mkdocs serve -f en/mkdocs.yml .venv/bin/mkdocs serve -f zh/mkdocs.yml ``` For static hosting, publish the shared `site/` directory.