summary refs log tree commit diff
path: root/src/api/routes/-
diff options
context:
space:
mode:
authorMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2022-08-30 15:05:23 +1000
committerMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2022-08-30 15:08:18 +1000
commit16315a3170ec018a834e68360e06b506415446d2 (patch)
tree90cfe456040fce35b904e88462886e3c73a2f3f2 /src/api/routes/-
parentStart listening after database and config has been loaded (diff)
parentOop, deprecated typeorm call (diff)
downloadserver-16315a3170ec018a834e68360e06b506415446d2.tar.xz
Merge branch 'staging' into dev/Maddy/fix/listeningAfterDb
Diffstat (limited to 'src/api/routes/-')
-rw-r--r--src/api/routes/-/healthz.ts17
-rw-r--r--src/api/routes/-/readyz.ts17
2 files changed, 34 insertions, 0 deletions
diff --git a/src/api/routes/-/healthz.ts b/src/api/routes/-/healthz.ts
new file mode 100644

index 00000000..5dee9e86 --- /dev/null +++ b/src/api/routes/-/healthz.ts
@@ -0,0 +1,17 @@ +import { route } from "@fosscord/api"; +import { Request, Response, Router } from "express"; +import { getConnection } from "typeorm"; + +const router = Router(); + +router.get("/", route({}), (req: Request, res: Response) => { + try { + // test that the database is alive & responding + getConnection(); + return res.sendStatus(200); + } catch (e) { + res.sendStatus(503); + } +}); + +export default router; diff --git a/src/api/routes/-/readyz.ts b/src/api/routes/-/readyz.ts new file mode 100644
index 00000000..5dee9e86 --- /dev/null +++ b/src/api/routes/-/readyz.ts
@@ -0,0 +1,17 @@ +import { route } from "@fosscord/api"; +import { Request, Response, Router } from "express"; +import { getConnection } from "typeorm"; + +const router = Router(); + +router.get("/", route({}), (req: Request, res: Response) => { + try { + // test that the database is alive & responding + getConnection(); + return res.sendStatus(200); + } catch (e) { + res.sendStatus(503); + } +}); + +export default router;