fix: update application run command in Makefile and Taskfile to use the correct module path for meshchat

This commit is contained in:
Ivan
2026-04-08 16:31:17 -05:00
parent 65c12db06b
commit 008b451d24
2 changed files with 2 additions and 2 deletions

View File

@@ -5,7 +5,7 @@ install:
poetry install
run:
poetry run meshchatx
poetry run python -m meshchatx.meshchat
build:
pnpm run build

View File

@@ -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)