File size: 272 Bytes
3a12bf8
 
 
 
 
 
 
1
2
3
4
5
6
7
#!/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