SIN-Deploy-Bot commited on
Commit
a8c537d
·
1 Parent(s): 831de95

run: use python -m uvicorn

Browse files
Files changed (1) hide show
  1. start.sh +1 -1
start.sh CHANGED
@@ -65,4 +65,4 @@ fi
65
 
66
  # Start the application with uvicorn directly
67
  echo "🎯 Starting uvicorn on port ${PORT:-7860}"
68
- exec uvicorn app:app --host 0.0.0.0 --port ${PORT:-7860} --log-level info
 
65
 
66
  # Start the application with uvicorn directly
67
  echo "🎯 Starting uvicorn on port ${PORT:-7860}"
68
+ exec python -m uvicorn app:app --host 0.0.0.0 --port ${PORT:-7860} --log-level info