-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathsettings.js
More file actions
59 lines (43 loc) · 1.38 KB
/
settings.js
File metadata and controls
59 lines (43 loc) · 1.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
//=====💫 STAR XD 🔥====
export default {
// PUT YOUR SESSION ID BELOW (Required)
// Get from: https://star.malvintech.sbs/
SESSION_ID: "",
// PUT YOUR REMOVE BACKGROUND KEY (Optional)
// Get from: https://remove.bg/api
REMOVEBG_KEY: "",
// If you don't have session id, use pairing code
// Put your WhatsApp number here (without +)
PAIRING_NUMBER: "",
SESSION_SITE: "https://pair.malvintech.sbs",
// ===== DATABASE CONFIGURATION =====
// Leave empty to use JSON file storage
// Recommended for cloud platforms
// MongoDB URL (recommended for Heroku, Railway, etc.)
// Format: mongodb+srv://username:password@cluster.mongodb.net/dbname
MONGO_URL: "",
// PostgreSQL (Optional)
// Format: postgresql://username:password@localhost:5432/dbname
POSTGRES_URL: "",
// MySQL (Optional)
// Format: mysql://username:password@localhost:3306/dbname
MYSQL_URL: "",
// SQLite Path (Optional)
// Example: "./data/baileys.db"
DB_URL: "",
// Bot Prefix (default: .)
PREFIXES: ".",
// Bot Pack Name
PACKNAME: "sᴛᴀʀ-xᴅ",
// Bot Name
BOT_NAME: "sᴛᴀʀ-xᴅ",
// Add Owner WhatsApp Number (without +)
OWNER_NUMBER: "263725787000",
// Command Mode: "public" or "private"
// private = only owner can use commands
COMMAND_MODE: "private",
// Owner Name
BOT_OWNER: "ᴍʀ xᴅᴋɪɴɢ",
// Timezone
TIMEZONE: "Africa/Harare"
};