Update start.py

fix: correct manual startup commands in start.py to use uv

Replace incorrect `python run` commands with proper `uv run` syntax
This commit is contained in:
Richard 2025-07-08 23:36:51 +08:00 committed by GitHub
parent 03298b9616
commit ba8517cffb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

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