fix: add v1 health endpoint for deployment healthcheck
Some checks failed
Deploy to 110 WOOO Server / deploy (push) Failing after 7s
Some checks failed
Deploy to 110 WOOO Server / deploy (push) Failing after 7s
This commit is contained in:
8
apps/web/src/app/api/v1/health/route.ts
Normal file
8
apps/web/src/app/api/v1/health/route.ts
Normal file
@@ -0,0 +1,8 @@
|
||||
import { NextResponse } from "next/server";
|
||||
|
||||
export async function GET() {
|
||||
return NextResponse.json({
|
||||
status: "ok",
|
||||
service: "web",
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user