From cf34d592c32ccf8cf5a9e4c42e7ce6e0be62ccbe Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Sun, 9 Nov 2025 22:05:22 +0000 Subject: [PATCH] Configure health server to use port 8044 as default cgen-524503d5f1594a3fbcf717a6dbe33b0a --- discord-bot/bot.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord-bot/bot.js b/discord-bot/bot.js index e2428b56..de493833 100644 --- a/discord-bot/bot.js +++ b/discord-bot/bot.js @@ -229,7 +229,7 @@ async function registerDiscordCommands() { } // Start HTTP health check server -const healthPort = process.env.HEALTH_PORT || 3000; +const healthPort = process.env.HEALTH_PORT || 8044; http .createServer((req, res) => { res.setHeader("Access-Control-Allow-Origin", "*");