Files
property-management-network/app/api/health/route.ts
T

15 lines
467 B
TypeScript
Raw Normal View History

import { NextResponse } from "next/server"
// Lightweight liveness probe used by the Docker HEALTHCHECK and App Platform.
// Intentionally does NOT touch the database — a transient DB blip should not
// cause the container to be marked unhealthy and restarted.
export const dynamic = "force-dynamic"
export function GET() {
return NextResponse.json({
status: "ok",
service: "property-management-network",
timestamp: new Date().toISOString(),
})
}