AI-Presentation-Coach / startup.sh
Misbah17311's picture
Update startup.sh
7f6775f
raw
history blame contribute delete
219 Bytes
#!/bin/bash
# Start the FastAPI backend server in the background
uvicorn app.main:app --host 0.0.0.0 --port 8000 &
# Start the Streamlit frontend server
streamlit run ui.py --server.port 7860 --server.address 0.0.0.0