forked from DenverCoder1/dev-pro-tips-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.py
35 lines (28 loc) · 1.13 KB
/
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
import os
from dotenv.main import load_dotenv
load_dotenv()
# Bot setup
PREFIX = "!"
BOT_NAME = "DevProTips"
BOT_TOKEN = os.getenv("DISCORD_TOKEN")
OWNER_ID = int(os.getenv("OWNER_ID"))
# Discord Guild ID
GUILD_ID = int(os.getenv("GUILD_ID"))
# Discord Channel IDs
INTRO_CHANNEL_ID = int(os.getenv("INTRO_CHANNEL_ID"))
RULES_CHANNEL_ID = int(os.getenv("RULES_CHANNEL_ID"))
BOT_LOG_CHANNEL_ID = int(os.getenv("BOT_LOG_CHANNEL_ID"))
YOUTUBE_VIDEOS_CHANNEL_ID = int(os.getenv("YOUTUBE_VIDEOS_CHANNEL_ID"))
# Discord Role IDs
CONTENT_CREATOR_ROLE_ID = int(os.getenv("CONTENT_CREATOR_ROLE_ID"))
DEVELOPER_ROLE_ID = int(os.getenv("DEVELOPER_ROLE_ID"))
SUBSCRIBER_ROLE_ID = int(os.getenv("SUBSCRIBER_ROLE_ID"))
MEMBER_ROLE_ID = int(os.getenv("MEMBER_ROLE_ID"))
UNASSIGNED_ROLE_ID = int(os.getenv("UNASSIGNED_ROLE_ID"))
YOUTUBE_PING_ROLE_ID = int(os.getenv("YOUTUBE_PING_ROLE_ID"))
ANNOUNCEMENTS_PING_ROLE_ID= int(os.getenv("ANNOUNCEMENTS_PING_ROLE_ID"))
GIVEAWAY_PING_ROLE_ID = int(os.getenv("GIVEAWAY_PING_ROLE_ID"))
# Discord Message IDs
RULES_MESSAGE_ID = int(os.getenv("RULES_MESSAGE_ID"))
# YouTube Channel ID
YT_CHANNEL_ID = os.getenv("YT_CHANNEL_ID")