Add Health Check endpoint
This commit is contained in:
parent
a0816fba9e
commit
8e3358d55d
12
index.js
12
index.js
@ -1,8 +1,14 @@
|
|||||||
Bun.serve({
|
Bun.serve({
|
||||||
port: 8080,
|
port: 8080,
|
||||||
fetch(req, res) {
|
fetch(req) {
|
||||||
console.log(`Recieved Request: ${req.method} ${req.url}`);
|
const url = new URL(req.url);
|
||||||
return Response.redirect(Bun.env.REDIRECT_TARGET, 302);
|
if (url.pathname === "/health") {
|
||||||
|
console.log("Health Check");
|
||||||
|
return new Response("ok");
|
||||||
|
} else {
|
||||||
|
console.log(`Recieved Request: ${req.method} ${req.url}`);
|
||||||
|
return Response.redirect(Bun.env.REDIRECT_TARGET, 302);
|
||||||
|
}
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user