ficd.sh/justfile

17 lines
344 B
Makefile

zonaref := `rg "^.*(git\+.*).*$" -r '$1' .forgejo/workflows/deploy.yml`
echo:
echo {{zonaref}}
# run the development build of zona
dev *args:
uv run --project "$HOME/dev/zona" zona {{args}}
serve *args:
@just run serve {{args}}
build *args:
@just run build {{args}}
run *args:
uv run --with '{{zonaref}}' zona {{args}}