add static site generator

This commit is contained in:
2025-05-07 17:14:45 -07:00
parent ae66d51f22
commit 1faa6dad4f
9 changed files with 168 additions and 0 deletions

9
www/build.sh Executable file
View File

@ -0,0 +1,9 @@
#!/bin/bash
(cd src; hy build.hy)
mkdir -p site/{html,assets,scripts}
cp -r src/output/* site/html
echo 'html generated'
cp -r src/scripts site/
echo 'scripts copied'
cp -r src/assets site/
echo 'assets copied'