PayShield-ML / entrypoint.sh
Sibi Krishnamoorthy
prod
8a08300
raw
history blame contribute delete
216 Bytes
#!/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