Files
Guido van Dijk 8a1db19b52 feat: ChatGPT-reeks, zes handleidingen voor Custom GPT's voor school
Schoolgids-assistent, Ouderbrief-assistent, Toetsweekplanner, Lesmateriaal-check,
Studiecoach en Notulen-assistent, gebouwd en getest in een ChatGPT Business-werkruimte,
met instructies, fictieve documenten, schermafbeeldingen en gebouwde PDF's.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
2026-09-21 16:21:52 +02:00

10 lines
368 B
Python
Vendored

#!/usr/bin/env python3
"""Bouwt alle handleidingen en bijlagen in één keer: python3 _gereedschap/bouw_alles.py"""
import runpy, sys
from pathlib import Path
root = Path(__file__).resolve().parent.parent
for build in sorted(root.glob("*/build.py")):
print(f"== {build.parent.name}")
sys.argv = [str(build)]
runpy.run_path(str(build), run_name="__main__")