From dc9b31a5a2eb4419e0b0e8a0177e4000daa2cc57 Mon Sep 17 00:00:00 2001 From: bronsen Date: Thu, 19 Feb 2026 21:14:19 +0100 Subject: [PATCH] just: collect variables at top of script --- justfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/justfile b/justfile index 0f7c76b..29c14fd 100644 --- a/justfile +++ b/justfile @@ -1,3 +1,6 @@ +the_app := "teilchensammler_cli.main" +uv_export_options := "--frozen --format requirements.txt --quiet --no-install-project" + [private] default: @just --list @@ -15,7 +18,6 @@ build: console: uv run textual console -the_app := "teilchensammler_cli.main" # run app with logs going to console run-console: @@ -25,7 +27,6 @@ run-console: run: uv run python -m {{ the_app }} -uv_export_options := "--frozen --format requirements.txt --quiet --no-install-project" # export dependencies into requirements files exports-deps: uv export {{ uv_export_options }} --output-file requirements.txt