add api healthcheck

This commit is contained in:
Brandon Egger 2024-04-23 16:34:36 -05:00
parent c83769e6e0
commit 54831e55d4
2 changed files with 13 additions and 1 deletions

View File

@ -21,7 +21,7 @@ primary_region = 'ord'
timeout = '5s'
grace_period = '10s'
method = 'GET'
path = '/'
path = '/api/healthcheck'
[[vm]]
memory = '256MB'

View File

@ -0,0 +1,12 @@
import type { NextApiRequest, NextApiResponse } from "next";
type ResponseData = {
status: string;
};
export default function handler(
_: NextApiRequest,
res: NextApiResponse<ResponseData>
) {
res.status(200).json({ status: "ok" });
}