render
Some checks failed
/ job (push) Failing after 5m3s

This commit is contained in:
Marc Beninca 2025-06-20 21:11:40 +02:00
parent 0fee263723
commit 5781030e7e
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

23
render.py Executable file
View file

@ -0,0 +1,23 @@
#! /usr/bin/env -S python3 -B
import sys
from pathlib import Path
from rwx.prj import Project
from rwx.prj.sphinx import SphinxProject
PROJECTS = [
"blanc",
"probatoire",
"thesis",
]
if __name__ == "__main__":
root = Path(__file__).resolve().parent / "cnam.marc"
# projects
for project in PROJECTS:
Project(root / project / "build.py").build()
# project
sys.exit(SphinxProject(Path(__file__)).build())