karuracc_dev_test/app/api/health/route.ts
David Kiania fafef34304 Add Next.js app with Supabase auth, notes feature, and Docker setup
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-16 15:43:09 +03:00

14 lines
257 B
TypeScript

import { NextResponse } from "next/server";
export const runtime = "edge";
export function GET() {
return NextResponse.json(
{
status: "ok",
app: "fireside-test-app",
ts: new Date().toISOString(),
},
{ status: 200 }
);
}