Spaces:
Running
Running
from app.api.api_routes import router | |
from fastapi import FastAPI | |
from fastapi.middleware.cors import CORSMiddleware | |
app = FastAPI() | |
app.add_middleware( | |
CORSMiddleware, | |
allow_origins=["*"], # Update with frontend domain in prod | |
allow_credentials=True, | |
allow_methods=["*"], | |
allow_headers=["*"], | |
) | |
app.include_router(router) | |
def health_check(): | |
return {"status": "ok"} | |
def read_root(): | |
return {"status": "ok"} |