From ba8517cffbbcbc8d9c685caea1b160348cea68e2 Mon Sep 17 00:00:00 2001 From: Richard Date: Tue, 8 Jul 2025 23:36:51 +0800 Subject: [PATCH] Update start.py fix: correct manual startup commands in start.py to use uv Replace incorrect `python run` commands with proper `uv run` syntax --- start.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/start.py b/start.py index 74c20840..af5693d0 100644 --- a/start.py +++ b/start.py @@ -63,11 +63,11 @@ def print_manual_instructions(): print(f"{Colors.CYAN} cd frontend && npm run dev{Colors.ENDC}\n") print(f"{Colors.BOLD}3. Start Backend (in a new terminal):{Colors.ENDC}") - print(f"{Colors.CYAN} cd backend && python run api.py{Colors.ENDC}\n") + print(f"{Colors.CYAN} cd backend && uv run api.py{Colors.ENDC}\n") print(f"{Colors.BOLD}4. Start Background Worker (in a new terminal):{Colors.ENDC}") print( - f"{Colors.CYAN} cd backend && python run -m dramatiq run_agent_background{Colors.ENDC}\n" + f"{Colors.CYAN} cd backend && uv run -m dramatiq run_agent_background{Colors.ENDC}\n" ) print("Once all services are running, access Suna at: http://localhost:3000\n")