build/web
This commit is contained in:
parent
3d3b8da3af
commit
d22c36d01d
1 changed files with 11 additions and 0 deletions
11
build.py
Executable file
11
build.py
Executable file
|
@ -0,0 +1,11 @@
|
|||
#! /usr/bin/env python3
|
||||
"""Build web."""
|
||||
|
||||
from pathlib import Path
|
||||
|
||||
from rwx.fs import make_directory, write
|
||||
|
||||
if __name__ == "__main__":
|
||||
out = Path(__file__).parent / "out" / "web"
|
||||
make_directory(out)
|
||||
write(out / "index.html", "to.rwx.work")
|
Loading…
Reference in a new issue