Update bot health port to PebbleHost's 8044

cgen-2b9ebcdf8dda4458b8d1f7c52608fca9
This commit is contained in:
Builder.io 2025-11-09 01:01:57 +00:00
parent 17aa19fa2a
commit c6c4eaf9f4
2 changed files with 3 additions and 3 deletions

View file

@ -7,7 +7,7 @@ export interface BotHealthStatus {
error?: string; error?: string;
} }
const BOT_HEALTH_URL = "http://144.217.139.239:3001/health"; const BOT_HEALTH_URL = "http://144.217.139.239:8044/health";
export async function checkBotHealth(): Promise<BotHealthStatus> { export async function checkBotHealth(): Promise<BotHealthStatus> {
try { try {

View file

@ -8,9 +8,9 @@ SUPABASE_URL=https://kmdeisowhtsalsekkzqd.supabase.co
SUPABASE_SERVICE_ROLE=your_service_role_key_here SUPABASE_SERVICE_ROLE=your_service_role_key_here
# Server Configuration # Server Configuration
# Note: These must be different ports to avoid binding conflicts # Note: PebbleHost assigns port 8044 for the health endpoint
BOT_PORT=3000 BOT_PORT=3000
HEALTH_PORT=3001 HEALTH_PORT=8044
NODE_ENV=production NODE_ENV=production
# AeThex Configuration # AeThex Configuration