WebRAG / main.py
Arun21102003
Fix build: correct requirements syntax and update Dockerfile
c5f3a30
raw
history blame contribute delete
270 Bytes
import uvicorn
import os
from src.app import app
if __name__ == "__main__":
# Internal port for FastAPI to avoid conflict with Streamlit (7860)
port = 5000
uvicorn.run(
app,
host="0.0.0.0",
port=port,
log_level="info"
)