Define a health endpoint for docker compose

This commit is contained in:
Manuel Bustillo 2024-12-28 11:42:22 +01:00
parent 70b023acac
commit ff73133e05

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

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