visique-worker / start.sh
Happy People
Deploying CPU-optimized Dolphin Worker from Visique
11d88a8
raw
history blame contribute delete
239 Bytes
#!/bin/bash
set -e
# Ensure backend code is available (for imports)
if [ -d "backend" ]; then
echo "Copying backend code to app directory..."
cp -r backend/app .
fi
# Start uvicorn
exec uvicorn app:app --host 0.0.0.0 --port 7860