This commit is contained in:
2025-06-08 11:55:36 +02:00
parent 53fd3be916
commit eebdf48ff3

11
render.py Executable file
View File

@@ -0,0 +1,11 @@
#! /usr/bin/env python3
"""Dummy build."""
from pathlib import Path
from rwx.fs import make_directory, write
if __name__ == "__main__":
out = Path(__file__).parent / "output" / "web"
make_directory(out)
write(out / "index.html", "prj.rwx.work")