Add Health Check endpoint
This commit is contained in:
parent
a0816fba9e
commit
8e3358d55d
8
index.js
8
index.js
@ -1,8 +1,14 @@
|
||||
Bun.serve({
|
||||
port: 8080,
|
||||
fetch(req, res) {
|
||||
fetch(req) {
|
||||
const url = new URL(req.url);
|
||||
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