Configure health server to use port 8044 as default

cgen-524503d5f1594a3fbcf717a6dbe33b0a
This commit is contained in:
Builder.io 2025-11-09 22:05:22 +00:00
parent 3a8e5006c3
commit cf34d592c3

View file

@ -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", "*");