fix(docker): add curl and healthcheck routes for Coolify

This commit is contained in:
AyrisAI
2026-08-20 02:26:21 +03:00
parent 4f4f68b924
commit 373de65d07
3 changed files with 13 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
import { NextResponse } from "next/server";
export async function GET() {
return NextResponse.json({ status: "ok", timestamp: new Date().toISOString() });
}