CoolFace
Apppublic

dannybhatt/AI_fast_api

sourceHugging Faceupdated 1y agoView on Hugging Face
0likes
start.sh13 linesDownload Raw Back to root
1#!/bin/bash2 3# Start FastAPI backend in background4echo "Starting FastAPI backend..."5uvicorn app.main:app --host 0.0.0.0 --port 8001 &6 7# Wait for backend to start8sleep 109 10# Start Streamlit frontend11echo "Starting Streamlit frontend..."12streamlit run frontend/streamlit_app.py --server.port 7860 --server.address 0.0.0.013