Define a health endpoint for docker compose
All checks were successful
Playwright Tests / test (pull_request) Has been skipped
Add copyright notice / copyright_notice (pull_request) Successful in 22s
Check usage of free licenses / build-static-assets (pull_request) Successful in 35s

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

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