-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.example.py
38 lines (27 loc) · 1.23 KB
/
config.example.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
# Create a new file (config.py) and copy everything in this file into the new file that you have created
config = {
# The app bot user's token (NOT SECRET) from https://discordapp.com/developers/applications/me
"DISCORD_BOT_TOKEN": "MjVs4329SDFj98.JFjjIEWIJ_YOustUPIDlaUGHOuTLoUD",
# Enter your tumblr API key from https://www.tumblr.com/oauth/apps
"TUMBLR_API_KEY": "adsfkadnmvcxznzxvcmsadkjadsfjksjhksaflcnzxv",
# API Key obtained from BronyTV
"BRONYTV_API_KEY": "dfasjkdfjklasjkldfaskldsajfk",
# The prefix used to distinguish a general message to a command
"COMMAND_PREFIX": ["!", "~"],
# Guild id
"GUILD_ID": "140252024666062848",
# The id of the admin role
"ADMIN_ROLE": "226258329147752448",
# The id of the streamer role.
"STREAMER_ROLE": "167777473667399681",
# The id of the spoiler role.
"SPOILER_ROLE": "253488094523234090",
# The id of the member role
"MEMBER_ROLE": "271774377258287104",
# The id of the mane/general channel
"MANE_CHANNEL": "140252024666062848",
# The id of the tumblr channel
"TUMBLR_CHANNEL": 149529550599176192,
# The id of the staff channel
"STAFF_CHANNEL": "226559135239118848",
}