sehatech-demo / main.py
larawehbe's picture
Upload folder using huggingface_hub
965ac15 verified
raw
history blame contribute delete
428 Bytes
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)