Spaces:
Build error
Build error
from fastapi import FastAPI | |
from fastapi.middleware.cors import CORSMiddleware | |
from app.api import routes | |
from app.config import get_settings | |
settings = get_settings() | |
app = FastAPI( | |
title=settings.PROJECT_NAME | |
) | |
app.add_middleware( | |
CORSMiddleware, | |
allow_origins=["*"], | |
allow_credentials=True, | |
allow_methods=["*"], | |
allow_headers=["*"], | |
) | |
app.include_router(routes.router, prefix=settings.API_V1_STR) | |