From 008b451d2416cef349ba155459b1df5800a79db4 Mon Sep 17 00:00:00 2001 From: Ivan Date: Wed, 8 Apr 2026 16:31:17 -0500 Subject: [PATCH] fix: update application run command in Makefile and Taskfile to use the correct module path for meshchat --- Makefile | 2 +- Taskfile.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 07cffbf..569565e 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ install: poetry install run: - poetry run meshchatx + poetry run python -m meshchatx.meshchat build: pnpm run build diff --git a/Taskfile.yml b/Taskfile.yml index 6441837..310883d 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -89,7 +89,7 @@ tasks: desc: Run the application deps: [install] cmds: - - poetry run meshchatx + - poetry run python -m meshchatx.meshchat dev: desc: Run in development mode (builds frontend first)