AiCirculartext / entrypoint.sh
circulartext's picture
Create entrypoint.sh
4f4d115 verified
raw
history blame
203 Bytes
#!/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