Spaces:
Runtime error
Runtime error
File size: 203 Bytes
4f4d115 |
1 2 3 4 5 6 7 8 9 |
#!/bin/bash
set -e
# Specify the path to your app.py file
APP_PATH="/app/app.py"
# Run the Uvicorn server with your FastAPI application
exec uvicorn "$APP_PATH:app" --host 0.0.0.0 --port 7860 --reload
|