logger

Self-hosted WhatsApp logger us...
Log | Files | Refs | Activity

root / src / config.js

config.js (457B)


      1 // --- CONFIGURATION ---
      2 const PORT = process.env.PORT || 3000;
      3 const AUTH_USER = process.env.AUTH_USER;
      4 const AUTH_PASS = process.env.AUTH_PASS;
      5 const MAX_LOGS = 500;
      6 const MAX_CONNECTIONS_PER_TOKEN = 15;
      7 const VERSION = '4.2.3';
      8 const EXCLUDED_JIDS = new Set(['917278779512@s.whatsapp.net', '201554426618024@lid']);
      9 
     10 module.exports = {
     11     PORT,
     12     AUTH_USER,
     13     AUTH_PASS,
     14     MAX_LOGS,
     15     MAX_CONNECTIONS_PER_TOKEN,
     16     VERSION,
     17     EXCLUDED_JIDS
     18 };
© notamitgamer • Site Built: 2026-09-05 01:53:16 UTC • git-mirror commit: c170d72 [view raw info]
Originally created with stagit • modified by notamitgamer
Forked from github.com/notamitgamer/git-mirror