Final Push

This commit is contained in:
2026-05-13 21:08:27 +01:00
parent e4f4992a1b
commit 659e4a72c5
32 changed files with 2173 additions and 3500 deletions

10
app/api/health/route.ts Normal file
View File

@@ -0,0 +1,10 @@
import { NextResponse } from "next/server";
/**
* Health check endpoint.
* Used by the Docker HEALTHCHECK instruction and load balancers.
* Returns 200 OK when the app is running.
*/
export async function GET() {
return NextResponse.json({ status: "ok" }, { status: 200 });
}