Website redesign

This commit is contained in:
eikek
2022-01-27 20:23:15 +01:00
parent 3fc7f54f1a
commit 261d2af9bb
248 changed files with 3519 additions and 1484 deletions

9
website/scripts/run-elm.sh Executable file
View File

@ -0,0 +1,9 @@
#!/usr/bin/env bash
CMD="elm make --output site/static/js/bundle.js --optimize elm/Main.elm elm/Search.elm"
$CMD
inotifywait -m -e close_write -r elm/ |
while read f; do
$CMD
done