CoolFace
Apppublic

aibridze/document_intelligence

sourceHugging Facemitupdated 6mo agoView on Hugging Face
0likes
start.sh15 linesDownload Raw Back to root
1#!/bin/bash2 3# Start FastAPI backend on port 8000 (internal)4uvicorn app.main:app --host 0.0.0.0 --port 8000 &5 6# Wait for FastAPI to be ready7sleep 38 9# Start Streamlit frontend on port 7860 (HF Spaces exposed port)10streamlit run streamlit_app.py \11    --server.port 7860 \12    --server.address 0.0.0.0 \13    --server.headless true \14    --browser.gatherUsageStats false15