180361eda4
Eight step-by-step guides, appendices (design patterns, design card with eight filled-in examples, AI tools in education), facilitator guide and presentation. LeX Consultancy edition; screenshots from the Dutch build of the same apps. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
10 lines
352 B
Python
Vendored
10 lines
352 B
Python
Vendored
#!/usr/bin/env python3
|
|
"""Builds every guide and appendix in one go: python3 _tools/build_all.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__")
|