-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.py
39 lines (35 loc) · 921 Bytes
/
config.py
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
config = {
# Telegram API token
'tg_token': '',
# Telegram chat ID
'tg_chat_id': 123,
# Pin telegram poll
'tg_pin': True,
# The lowest acceptable amount of people to participate in an event
'min_will_play': 4,
# Discord API token
'ds_token': '',
# Discord server ID
'ds_srv_id': 123,
# New category insertion position
# [0; +inf)
# 0 is the highest
'ds_ins_position': 0,
# The names of the text channels you want to generate
# 'general' will be created automatically
'ds_text_channels': [
'web', 'rev', 'forensics',
],
# The names of the voice channels you want to generate
'ds_voice_channels': [
'web', 'rev', 'forensics',
],
# IDs of your teams on CTFTime
'ctf_teams': [
1,2,3
],
# For dates in poll
'timezone': 'Europe/Moscow',
# Enables DEBUG logging
'DEBUG': False,
}