1
0
mirror of git://f0xx.org/ac/ac-docs synced 2026-07-29 05:39:40 +03:00

new DR and spec for cluster monitoring, docs updated

This commit is contained in:
Anton Afanasyeu
2026-06-26 19:47:17 +02:00
parent df726f5993
commit aab2b8512d
53 changed files with 5505 additions and 737 deletions

View File

@@ -7,12 +7,10 @@ import sys
from pathlib import Path
_BUILD_DIR = Path(__file__).resolve().parent
if (_BUILD_DIR.parent / "docs").is_dir():
ROOT = _BUILD_DIR.parent
DOCS = ROOT / "docs"
else:
ROOT = _BUILD_DIR.parent
DOCS = ROOT
ROOT = _BUILD_DIR.parent
# Always scan from ROOT so that DRs/, specs/, and root-level .md files are included.
# (The old "docs/" sub-scope logic is intentionally removed — ac-docs IS the docs repo.)
DOCS = ROOT
sys.path.insert(0, str(_BUILD_DIR))
from md_to_pdf import build_pdf_from_markdown # noqa: E402
@@ -24,7 +22,10 @@ SUBTITLE_BY_REL = {
"DRs/20100612_1_scaling.md": "Platform scaling — DR (architecture, bandwidth, GEO policy, task graph)",
"DRs/20260618_repos_reorganizing.md": "Repository & microservice split — frozen DR R1.1",
"specs/20260618_repos_reorganizing.md": "Repository & microservice split — SPEC R1 (normative)",
"DRs/20260626_cluster_monitoring.md": "Infrastructure health monitoring — frozen DR R0",
"specs/20260626_cluster_monitoring.md": "Infrastructure health monitoring — SPEC R0 (normative)",
"20260620_postgres_timescale_db_platform.md": "PostgreSQL, TimescaleDB, platform DB adapters — advisory",
"Installing_MacOS_Sierra_10.12_as_XEN_guest.md": "Installing macOS Sierra 10.12 as a XEN HVM guest (Clover / OpenCore)",
}