This commit is contained in:
Daniel Fichtinger 2025-06-21 22:13:31 -04:00
commit c174575111
6 changed files with 283 additions and 0 deletions

7
justfile Normal file
View file

@ -0,0 +1,7 @@
run arg:
#!/bin/sh
if [ -d "public" ] && [ "{{arg}}" = "build" ]; then
rm -r public
fi
uv run --project ~/dev/zona-py zona {{arg}}