-
Notifications
You must be signed in to change notification settings - Fork 2
/
config.example.json
72 lines (72 loc) · 1.9 KB
/
config.example.json
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
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "My Bot",
"description": "Yet another discord bot with music, economy, levels, fun and more :)",
"keywords": "discord,bot,music,moderation,levels,fun",
"default_language": "en",
"bot": {
"token": "<Discord Bot Token>",
"prefix": "-",
"about": {
"repo": "https://github.com/Prevter/PulseByte",
"support": "https://discord.gg/FDyJVPFNT7"
},
"activity": {
"status": "online",
"type": "PLAYING",
"name": "-help"
},
"automod": {
"enabled": true
},
"buttons_timeout": 60000,
"embed_color": "#14B207",
"error_embed_color": "#F04848",
"owners": [
"400199033915965441"
],
"xp": {
"enabled": true,
"cooldown": 60,
"min": 15,
"max": 25,
"level_up_msg": true,
"level_up_msg_delete": 10000,
"card": {
"accent_color": "#ffbb5c",
"background": "#090a0b",
"background_opacity": 100
}
}
},
"database": {
"type": "mongodb",
"connection_string": "mongodb://127.0.0.1:27017/bot",
"enable_backup": false,
"backup_interval": 3600000,
"backup_count": 5,
"backup_path": "./backups/",
"backup_on_start": false
},
"web": {
"enabled": true,
"port": 80,
"url": "http://localhost/"
},
"logger": {
"level": "info",
"file": {
"enable": true,
"path": "./logs.log"
},
"stdout": {
"enable": true
},
"webhook": {
"enable": false,
"override_level": null,
"url": ""
}
},
"imgur_client_id": "<Imgur Client ID>",
"weather_api_key": "<OpenWeatherMap API Key>"
}