Spaces:
Sleeping
Sleeping
| # Render startup script for Marine Guard API | |
| echo "π Starting Marine Guard API..." | |
| # Set default port if not provided | |
| export PORT=${PORT:-8000} | |
| echo "π‘ Starting uvicorn on port $PORT..." | |
| # Start the FastAPI application | |
| exec uvicorn app.main:app --host 0.0.0.0 --port $PORT --workers 1 |