Spaces:
Sleeping
Sleeping
File size: 1,240 Bytes
bab4aa8 | 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 41 42 43 44 | import os
from dotenv import load_dotenv
# Explicitly load .env file from the hf_server directory
base_dir = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
dotenv_path = os.path.join(base_dir, ".env")
load_dotenv(dotenv_path=dotenv_path, override=True)
from fastapi import FastAPI
from fastapi.middleware.cors import CORSMiddleware
from .routes import health, detection, chat, cart_analysis
from .services.http_client import init_http_client, close_http_client
app = FastAPI()
# Enable CORS so Flutter Web or local clients can call it directly
app.add_middleware(
CORSMiddleware,
allow_origins=[
"http://localhost:50220",
"http://127.0.0.1:50220",
"http://localhost:8000",
"http://127.0.0.1:8000",
],
allow_origin_regex=r"https?://(localhost|127\.0\.0\.1)(:\d+)?",
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
)
# Include routers
app.include_router(health.router)
app.include_router(detection.router)
app.include_router(chat.router)
app.include_router(cart_analysis.router)
@app.on_event("startup")
async def startup_event():
await init_http_client()
@app.on_event("shutdown")
async def shutdown_event():
await close_http_client()
|