Skip to content

Commit

Permalink
feat: add health endpoint for frontend app
Browse files Browse the repository at this point in the history
  • Loading branch information
szwabodev committed Dec 31, 2024
1 parent 638fbe1 commit ed5936e
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions apps/dokploy/pages/api/health.ts
Original file line number Diff line number Diff line change
@@ -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 });
}

0 comments on commit ed5936e

Please sign in to comment.