forked from Renondedju/ISARTBot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.ini
More file actions
104 lines (85 loc) · 1.83 KB
/
Copy pathsettings.ini
File metadata and controls
104 lines (85 loc) · 1.83 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
################################
# ISART Bot configuration file #
################################
[common]
database=database.db
prefix=!
super_admins=[213262036069515264,
121712966855950336]
# If developement_mode is set to 'yes',
# every required permission can be bypassed by the following developer ids
[debug]
developement_mode=yes
developer_ids=[213262036069515264,
121712966855950336,
179313613209600000,
185700708513873920]
# List of all the available extensions
# if set to false, the extension won't be loaded by default
[extensions]
ext=yes
iam=yes
test=yes
lang=yes
game=yes
class=yes
starboard=yes
diffusion=yes
foodtruck=yes
moderation=yes
# Path to all the language files of the bot
[languages]
fr=isartbot/languages/french.lang
en=isartbot/languages/english.lang
# Starboard settings
[starboard]
minimum_stars=4
control_emoji=:white_medium_star:
[starboard_icons]
0=:star:
5=:star2:
15=:dizzy:
25=:sparkles:
50=:comet:
# Class commands settings
[class]
role_color=0x277bb2
# Game commands settings
[game]
list_max_lines=10
role_color=0x1f8b4c
scan_delay=300
[iam]
list_max_lines=10
[foodtruck]
database=storage/foodtrucks.csv
# Logging
# see https://docs.python.org/3/library/logging.config.html for more information
# about the following section
[loggers]
keys=root,isartbot
[handlers]
keys=console_handler,file_handler
[formatters]
keys=format
[logger_root]
level=DEBUG
handlers=console_handler
[logger_isartbot]
level=INFO
handlers=console_handler,file_handler
qualname=isartbot
propagate=0
[handler_console_handler]
class=StreamHandler
level=INFO
formatter=format
args=(sys.stdout,)
[handler_file_handler]
class=FileHandler
level=INFO
formatter=format
args=("logs.log", "a", "utf-8")
[formatter_format]
format=%(asctime)s - [%(levelname)s] %(message)s
datefmt=%Y-%m-%d %H:%M:%S