From 839e106b101eba9c59ec8d19cfd4fe36f6ce49a3 Mon Sep 17 00:00:00 2001 From: Sudo-Ivan Date: Fri, 6 Mar 2026 02:33:00 -0600 Subject: [PATCH] Refactor Taskfile.yml to simplify Poetry commands by removing Python module prefix --- Taskfile.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Taskfile.yml b/Taskfile.yml index f6a7631..0ef30a4 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -75,7 +75,7 @@ tasks: deps:be: desc: Install Python dependencies using Poetry cmds: - - "{{.PYTHON}} -m poetry install" + - poetry install setup:be: desc: Full backend environment setup @@ -89,7 +89,7 @@ tasks: desc: Run the application deps: [install] cmds: - - "{{.PYTHON}} -m poetry run meshchat" + - poetry run meshchat dev: desc: Run in development mode (builds frontend first) @@ -230,7 +230,7 @@ tasks: desc: Build Python wheel package deps: [install] cmds: - - "{{.PYTHON}} -m poetry build -f wheel" + - poetry build -f wheel - "{{.PYTHON}} scripts/move_wheels.py" # --- Electron Distribution ---