#!/bin/bash # Start FastAPI in the background uvicorn src.api.main:app --host 0.0.0.0 --port 8000 & # Start Streamlit in the foreground streamlit run src/frontend/app.py --server.port 7860 --server.address 0.0.0.0