File size: 1,104 Bytes
1941764 | 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 45 46 | """
Minimal test endpoint for Vercel deployment debugging
"""
from fastapi import FastAPI
from fastapi.middleware.cors import CORSMiddleware
import os
app = FastAPI(title="Todo API - Minimal Test")
# CORS
app.add_middleware(
CORSMiddleware,
allow_origins=["*"],
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
)
@app.get("/")
async def root():
return {
"status": "ok",
"message": "Minimal FastAPI working on Vercel",
"environment": {
"VERCEL": os.getenv("VERCEL", "not set"),
"VERCEL_ENV": os.getenv("VERCEL_ENV", "not set"),
}
}
@app.get("/health")
async def health():
return {"status": "healthy"}
@app.get("/test-db")
async def test_db():
"""Test database connection"""
try:
from src.database import engine
from sqlmodel import text
with engine.connect() as conn:
result = conn.execute(text("SELECT 1"))
return {"status": "ok", "database": "connected"}
except Exception as e:
return {"status": "error", "message": str(e)}
|