import { sql } from "drizzle-orm"; import { NextResponse } from "next/server"; import { db } from "@/lib/db"; export const dynamic = "force-dynamic"; export async function GET() { const timestamp = new Date().toISOString(); try { await db.execute(sql`SELECT 1`); return NextResponse.json( { status: "ok", timestamp, checks: { database: "up", }, }, { status: 200 }, ); } catch { return NextResponse.json( { status: "degraded", timestamp, checks: { database: "down", }, }, { status: 503 }, ); } }