uptime-poc-env / start.sh
ll609's picture
added agent browse ability
2c5a24e
raw
history blame contribute delete
357 Bytes
#!/bin/bash
# --- 1. Install Playwright Chromium (if not cached) ---
echo "Ensuring Playwright browsers are installed..."
playwright install chromium 2>/dev/null || true
# --- 2. Start the App Server ---
echo "Starting Uptime PoC server on port ${PORT:-7860}..."
cd /app
export PYTHONPATH=/app
uvicorn backend.main:app --host 0.0.0.0 --port ${PORT:-7860}