Merge pull request 'Define a health endpoint for docker compose' (#160) from health-check-endpoint into main
Some checks failed
Playwright Tests / test (push) Has been skipped
Check usage of free licenses / build-static-assets (push) Successful in 27s
Build Nginx-based docker image / build-static-assets (push) Failing after 1m22s

Reviewed-on: #160
This commit is contained in:
bustikiller 2024-12-28 10:51:18 +00:00
commit 3f38a9191f

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

@ -0,0 +1,7 @@
/* Copyright (C) 2024 Manuel Bustillo*/
import { NextResponse } from "next/server";
export function GET() {
return NextResponse.json({});
}