init: document-haness 하네스 설계

This commit is contained in:
DongHyeonka
2026-07-24 13:58:08 +09:00
parent d6f78f92a0
commit c39406bbdd
219 changed files with 7010 additions and 20052 deletions
+10
View File
@@ -0,0 +1,10 @@
$ErrorActionPreference = "Stop"
$Root = Split-Path -Parent (Split-Path -Parent $MyInvocation.MyCommand.Path)
$env:PYTHONPATH = "$Root/src" + $(if ($env:PYTHONPATH) { ";$env:PYTHONPATH" } else { "" })
$Out = "$Root/examples/output/retry-policy-demo"
if (Test-Path $Out) { Remove-Item -Recurse -Force $Out }
python -m claridoc run `
--brief "$Root/examples/briefs/retry-policy-blog.json" `
--sources "$Root/examples/sources/retry-policy-sources.json" `
--config "$Root/config/pipeline.mock.json" `
--output $Out