forge/docus/README.md
Jacob Schmidt 827f3303a2 feat: add initial Docus setup and sync tool for documentation generation
- Created package.json for Docus with necessary scripts and dependencies.
- Implemented sync-docus-docs.mjs to automate the generation of documentation files from source markdown.
- Defined mappings for generated pages and virtual routes to ensure proper linking in documentation.
- Added static content files for the documentation structure, including navigation and index pages.
2026-04-21 16:07:27 -05:00

38 lines
615 B
Markdown

# Forge Docs
This directory contains the online documentation site for the Forge framework.
The site is built with Nuxt and Docus, and its content is generated from the
repository's source markdown files.
## Local Development
Install dependencies:
```powershell
npm install
```
Start the docs site:
```powershell
npm run dev
```
The content tree is refreshed automatically from:
- `docs/`
- `arma/server/docs/`
## Production Build
```powershell
npm run build
```
Use these environment variables when deploying to a custom host:
- `DOCS_BASE_URL`
- `DOCS_SITE_URL`
- `DOCS_REPO_URL`
- `DOCS_REPO_BRANCH`