From f37e920e004f21f90d0bf8e21c171fb35434e6bb Mon Sep 17 00:00:00 2001 From: bronsen Date: Fri, 26 Dec 2025 18:16:07 +0100 Subject: [PATCH] [project] add "run" recipe to start the app with fewer keystrokes Although history recall is a thing in all shells. --- justfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/justfile b/justfile index 77a9e3f..4ee9b47 100644 --- a/justfile +++ b/justfile @@ -12,6 +12,9 @@ console: run-dev: uv run textual run --dev src/teilchensammler_cli/__init__.py +run: + uv run python -m teilchensammler_cli.main + uv_export_options := "--frozen --format requirements.txt --quiet --no-install-project" exports-deps: uv export {{ uv_export_options }} --output-file requirements.txt