Spaces:
Sleeping
Sleeping
File size: 995 Bytes
dccc925 9b1ccc2 dccc925 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
"""FastAPI application factory for the backend."""
from fastapi import FastAPI
from fastapi.middleware.cors import CORSMiddleware
from backend.api.routes import router as api_router
def create_app() -> FastAPI:
"""
Create and configure the FastAPI application.
Returns:
Configured FastAPI instance with routes and middleware.
"""
app = FastAPI(
title="Rubric AI API",
description="Backend API for Rubric AI educational assessment tool",
version="1.0.0",
)
# Add CORS middleware for development
app.add_middleware(
CORSMiddleware,
allow_origins=["*"],
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
)
# Include API routes with /api prefix to avoid NiceGUI mount conflicts
app.include_router(api_router, prefix="/api")
# Health check endpoint
@app.get("/health")
async def health_check():
return {"status": "healthy"}
return app
|