#!/bin/bash # Startup script for Python service # Activate virtual environment if it exists if [ -d "venv" ]; then source venv/bin/activate fi # Start the service uvicorn main:app --host 0.0.0.0 --port 8000 --reload