#!/bin/bash # Start the FastAPI server in the background on port 7860 uvicorn trade_analysis.enhanced_api:app --host 0.0.0.0 --port 7860 & # Start the Streamlit app in the foreground on port 8501 streamlit run streamlit_app.py --server.port 8501 --server.address 0.0.0.0