From 26d8116cc087d3ce7b1be96a981174c3579e3393 Mon Sep 17 00:00:00 2001 From: Daniel Fichtinger Date: Fri, 4 Jul 2025 13:51:24 -0400 Subject: [PATCH] added justfile --- justfile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 justfile diff --git a/justfile b/justfile new file mode 100644 index 0000000..b1c5504 --- /dev/null +++ b/justfile @@ -0,0 +1,13 @@ +zonaref := `rg "^.*(git\+.*).*$" -r '$1' .build.yml` + +echo: + echo {{zonaref}} + +serve *args: + @just run serve {{args}} + +build *args: + @just run build {{args}} + +run *args: + uv run --with '{{zonaref}}' zona {{args}}