Backend-B2V / backend /start.sh
Muhammad-Mehdi's picture
Backend and remotion-video for HF Space
cfe45d5
raw
history blame contribute delete
205 Bytes
#!/bin/bash
set -e
# Cloud Run sets PORT automatically, default to 8080 if not set
PORT=${PORT:-8080}
# Start uvicorn with the correct host and port
exec uvicorn app.main:app --host 0.0.0.0 --port $PORT