feat(gateway): update WhatsApp bridge configuration and expose port 9929

This commit is contained in:
Anish Sarkar 2026-05-29 11:39:11 +05:30
parent bba33b5947
commit 9143cb6ad1
7 changed files with 35 additions and 7 deletions

View file

@ -13,7 +13,7 @@ import path from "node:path";
import pino from "pino";
import qrcode from "qrcode-terminal";
const PORT = Number(process.env.PORT || "3000");
const PORT = Number(process.env.PORT || "9929");
const SESSION_DIR = process.env.WHATSAPP_SESSION_DIR || "/data/sessions";
const SEND_TIMEOUT_MS = Number(process.env.WHATSAPP_SEND_TIMEOUT_MS || "60000");
const MAX_QUEUE_SIZE = Number(process.env.WHATSAPP_MAX_QUEUE_SIZE || "100");