-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.py
27 lines (22 loc) · 946 Bytes
/
settings.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
import os
from dotenv import load_dotenv
load_dotenv()
AUTHORIZED_CHANNEL_ID : str = os.getenv("DEBUG_CHANNEL_ID") or ""
WELCOME_CHANNEL_ID : int = int(os.getenv("WELCOME_CHANNEL_ID") or 1328935304437956610)
TURSO_TOKEN : str = os.getenv("TURSO_TOKEN") or ""
TURSO_URL : str = os.getenv("TURSO_URL") or ""
INVITE_XP = 30
COURSES = [
{
"name": "200+ Exercices Python pour apprendre à coder",
"url": "https://www.udemy.com/course/exercices-python/?referralCode=F0901265E01B4DC4DDE98EF9AFF6"
}
]
SOCIALS = {
"youtube": "https://www.youtube.com/channel/UCEztUC2WwKEDkVl9c6oUoTw?sub_confirmation=1",
"udemy": "https://www.udemy.com/user/thomas-collart/?referralCode=F0901265E01C7FDADABC",
"tiktok": "https://www.tiktok.com/@commentcoder",
"instagram": "https://www.instagram.com/commentcoder_com",
"github": "https://github.com/commentcoder",
"linkedin": "https://linkedin.com/in/thomascollart/"
}