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 };