Add frontend health ping endpoint and project docs
All checks were successful
ci/woodpecker/push/deploy Pipeline was successful

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-02-09 16:23:58 +02:00
parent d307a3fbad
commit 0bf5a8a546
2 changed files with 132 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
import { NextResponse } from "next/server";
export async function GET() {
return NextResponse.json({ status: "pong" });
}