Skip to content

Commit 82fc219

Browse files
committed
fix: add /api/health endpoint for Railway healthcheck
1 parent ba36add commit 82fc219

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

src/app/api/health/route.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import { NextResponse } from "next/server";
2+
3+
export async function GET() {
4+
return NextResponse.json({ status: "ok", timestamp: new Date().toISOString() });
5+
}

0 commit comments

Comments
 (0)