This repository contains the Antora playbook and configuration for the Dev Center documentation site. It aggregates content from multiple sources to build a unified documentation portal.
File |
Description |
|
Production Antora playbook. Uses remote GitHub URLs for all content sources and the published UI bundle. Used by CI/CD. |
|
Committed template for the local dev playbook. Copy to |
|
Committed template for full local testing (e.g. local UI bundle). |
|
VS Code folder settings and extension recommendations for this playbook repo. |
|
Defines dependencies and build scripts. |
Dependency |
Notes |
LTS recommended |
|
Package manager for install and build scripts |
Copy the example playbook to create your local config:
cp antora-playbook-local.example.yml antora-playbook-local.ymlThen build the site locally:
pnpm buildTo also use a local UI bundle (e.g., when developing themes):
cp antora-playbook.testing.example.yml antora-playbook.testing.yml
# Edit antora-playbook.testing.yml to point to your local UI bundle
pnpm build:testingTo build with remote sources (as CI does):
pnpm run build:onlineThe output will be generated in the build/site directory (or as configured in the playbook).
Command |
Purpose |
|
Install dependencies |
|
Build site with local playbook ( |
|
Build with testing playbook (e.g. local UI bundle) |
|
Build with remote sources (production/CI) |