#!/bin/bash # Start the FastAPI backend in the background echo "Starting FastAPI backend..." uvicorn backend.main:app --host 0.0.0.0 --port 8080 & # Start the Streamlit frontend in the foreground echo "Starting Streamlit frontend..." streamlit run frontend/app.py --server.port=8501 --server.address=0.0.0.0