Define a health endpoint for docker compose #160

Merged
bustikiller merged 2 commits from health-check-endpoint into main 2024-12-28 10:51:18 +00:00
Showing only changes of commit b1339e2ce9 - Show all commits

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({});
}