from fastapi import FastAPI from fastapi.middleware.cors import CORSMiddleware from app.api.v1.api import api_router from app.db.base import Base from app.db.session import engine # Create tables Base.metadata.create_all(bind=engine) app = FastAPI( title="REST API Service", description="A REST API service built with FastAPI", version="1.0.0", openapi_url="/openapi.json", docs_url="/docs", redoc_url="/redoc", ) # CORS middleware app.add_middleware( CORSMiddleware, allow_origins=["*"], allow_credentials=True, allow_methods=["*"], allow_headers=["*"], ) # Include API router app.include_router(api_router, prefix="/api/v1") @app.get("/") async def root(): return { "title": "REST API Service", "description": "A REST API service built with FastAPI", "version": "1.0.0", "documentation": "/docs", "health_check": "/health" } @app.get("/health") async def health_check(): return { "status": "healthy", "service": "REST API Service", "version": "1.0.0" }