webscrapper / server.py
AkshayStark's picture
change the dockerfile
c1aadf1
raw
history blame contribute delete
560 Bytes
import uvicorn
from fastapi import FastAPI
from fastapi.middleware.cors import CORSMiddleware
from api import researcher # Ensure researcher.py has `api_router`
app = FastAPI(docs_url='/docs')
# Enable CORS for frontend communication
app.add_middleware(
CORSMiddleware,
allow_origins=["*"],
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
)
# Include API routes from researcher module
app.include_router(researcher.api_router)
if __name__ == "__main__":
uvicorn.run(app, host="0.0.0.0", port=7860,reload=True)