render
This commit is contained in:
11
render.py
Executable file
11
render.py
Executable 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")
|
||||
Reference in New Issue
Block a user