File size: 1,116 Bytes
b4a98a2 60cc4ec b4a98a2 b36b72b 60cc4ec b4a98a2 b36b72b b4a98a2 b36b72b b4a98a2 60cc4ec |
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 |
from fastapi import FastAPI
from fastapi.middleware.cors import CORSMiddleware
from users.routes import router as users_router
from auth.route import router as auth_router
from orders.routes import order_router, meal_router
app = FastAPI(
title="SnapFeast API",
description="SnapFeast API for managing users, meals, and orders.",
version="1.0.0",
docs_url="/docs",
redoc_url="/redoc",
openapi_url="/openapi.json",
)
# Configure CORS
app.add_middleware(
CORSMiddleware,
allow_origins=["*"], # Allows all origins
allow_credentials=True,
allow_methods=["*"], # Allows all methods
allow_headers=["*"], # Allows all headers
)
# Include routers
app.include_router(users_router)
app.include_router(auth_router)
app.include_router(meal_router)
app.include_router(order_router)
@app.get("/", tags=["Home"])
def read_root():
return {"message": "Welcome to SnapFeast API!"}
@app.get("/health", tags=["Health"])
def health_check():
return {"status": "ok"}
if __name__ == "__main__":
import uvicorn
uvicorn.run(app, host="0.0.0.0", port=7860, log_level="info") |