Compare commits

..

3 Commits

Author SHA1 Message Date
3f38a9191f 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
2024-12-28 10:51:18 +00:00
07476221c3 Add copyright notice
All checks were successful
Playwright Tests / test (pull_request) Has been skipped
Check usage of free licenses / build-static-assets (pull_request) Successful in 32s
Add copyright notice / copyright_notice (pull_request) Successful in 34s
2024-12-28 10:46:08 +00:00
b1339e2ce9 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
2024-12-28 11:45:22 +01:00

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