#!/bin/bash echo "Installing dependencies..." pip install -r requirements.txt echo "Starting FastAPI server..." uvicorn api.app:app --host 0.0.0.0 --port=8000 & sleep 5 echo "Exposing API with Ngrok..." ngrok authtoken YOUR_NGROK_AUTH_TOKEN ngrok http 8000