OpenWormAI / scripts /docker-deploy.sh
SabarishG's picture
Update scripts/docker-deploy.sh
211468e verified
Raw
History Blame Contribute Delete
260 Bytes
#!/bin/bash
#!/bin/bash
echo "Starting fastapi backend"
python -m uvicorn main:app --host 127.0.0.1 --port 8005 &
echo "Starting streamlit frontend"
streamlit run streamlit_ui.py \
--server.port=7860 \
--server.address=0.0.0.0 \
--server.headless=true