feat: harden bootstrap and add tests

This commit is contained in:
2026-06-28 16:43:03 -05:00
parent 01ea9e391d
commit 991e73fcff
39 changed files with 3399 additions and 459 deletions
+19
View File
@@ -0,0 +1,19 @@
import { NextResponse } from 'next/server';
export const dynamic = 'force-dynamic';
export async function GET() {
return NextResponse.json(
{
ok: true,
status: 'healthy',
timestamp: new Date().toISOString(),
},
{
status: 200,
headers: {
'cache-control': 'no-store, max-age=0',
},
}
);
}