aa24ac8133
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
5 lines
247 B
Python
5 lines
247 B
Python
import runpy, sys
|
|
from pathlib import Path
|
|
sys.argv = ["build_guide.py", str(Path(__file__).resolve().parent / "self-hosting-dify.md")]
|
|
runpy.run_path(str(Path(__file__).resolve().parent.parent / "_tools" / "build_guide.py"), run_name="__main__")
|