mirror of
https://github.com/Dokploy/dokploy
synced 2025-06-26 18:27:59 +00:00
feat: add health endpoint for frontend app
This commit is contained in:
8
apps/dokploy/pages/api/health.ts
Normal file
8
apps/dokploy/pages/api/health.ts
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
import type { NextApiRequest, NextApiResponse } from "next";
|
||||||
|
|
||||||
|
export default async function handler(
|
||||||
|
req: NextApiRequest,
|
||||||
|
res: NextApiResponse,
|
||||||
|
) {
|
||||||
|
return res.status(200).json({ ok: true });
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user