Spaces:
Runtime error
Runtime error
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 | |