Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions sample.env → config.env
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# ____REMOVE THIS LINE AFTER RENAMING sample.env to .env ____
HOBBIES = 'CODING'
LANGUAGE = 'ENGLISH'
LANGUAGE = 'french'
OWNER_SKILLS = 'JAVASCRIPT'
OWNER_STATUS = 'DEVELOPER'
OWNER_NAME = 'NADEEM'
Expand All @@ -9,11 +8,11 @@ DATABASE_URL =
REMOVEBG_KEY =
PREFIX = '.'
MODE = 'private'
statusview = 'true'
statusview = 'false'
autoRead= 'false'
BOTNAME = 'MEGA-AI'
antidelete = 'true'
BOT_NUMBER=
OWNERS = '923444844060'
SESSION_ID =
BOT_NUMBER= '50941610347'
OWNERS = ''
SESSION_ID = 'ben509-bo:patch-2'
APP_URL =
6 changes: 3 additions & 3 deletions config.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import fs from 'fs'
import dotenv from 'dotenv'
dotenv.config()

const defaultOwner = '923444844060';
const defaultOwner = '50941610347';


// Check for the OWNERS environment variable; if not found, use the default
Expand All @@ -20,8 +20,8 @@ for (let i = 0; i < ownerlist.length; i++) {
}
//
global.botname = process.env.BOTNAME || 'MEGA-AI';
global.pairingNumber = process.env.BOT_NUMBER || '' ; // put your number here
global.SESSION_ID = process.env.SESSION_ID || '' ; // put your session id here
global.pairingNumber = process.env.BOT_NUMBER || '50941610347' ; // put your number here
global.SESSION_ID = process.env.SESSION_ID || '6JQySRBS#tH2-_fdmK5-ggScgRS4wOapmyAWMj0x8t8hGwxwa3_c' ; // put your session id here

global.mods = []
global.prems = []
Expand Down