mirror of
https://github.com/jakejarvis/sofa.git
synced 2026-08-29 03:55:38 -04:00
Replace @libsql/client with bun:sqlite for zero-dependency SQLite access, swap drizzle-orm/libsql adapter for drizzle-orm/bun-sqlite, and rewrite Dockerfile to use oven/bun:1-alpine. The raw Database instance is no longer exported via Proxy (native C++ methods lose `this` binding through Reflect.get); instead, a closeDatabase() helper handles graceful shutdown and the health check uses Drizzle's db.run() directly. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
14 lines
344 B
TypeScript
14 lines
344 B
TypeScript
import { sql } from "drizzle-orm";
|
|
import { NextResponse } from "next/server";
|
|
import { db } from "@/lib/db/client";
|
|
|
|
export async function GET() {
|
|
try {
|
|
db.run(sql`SELECT 1`);
|
|
|
|
return NextResponse.json({ status: "healthy" }, { status: 200 });
|
|
} catch {
|
|
return NextResponse.json({ status: "unhealthy" }, { status: 503 });
|
|
}
|
|
}
|