ProfitBook / run.sh
ckharche's picture
Create run.sh
3a12bf8 verified
raw
history blame contribute delete
272 Bytes
#!/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