File size: 307 Bytes
6c9c901
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash

# 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