Update variables.py
Browse files- variables.py +10 -10
variables.py
CHANGED
@@ -19,28 +19,28 @@ class Config(object):
|
|
19 |
|
20 |
# <================================================ REQUIRED ======================================================>
|
21 |
# Telegram API configuration
|
22 |
-
API_ID =
|
23 |
-
API_HASH = ""
|
24 |
|
25 |
# Database configuration (PostgreSQL)
|
26 |
-
DATABASE_URL = "postgres:"
|
27 |
|
28 |
# Event logs chat ID and message dump chat ID
|
29 |
-
EVENT_LOGS = -
|
30 |
-
MESSAGE_DUMP = -
|
31 |
|
32 |
# MongoDB configuration
|
33 |
-
MONGO_DB_URI = ""
|
34 |
|
35 |
# Support chat and support ID
|
36 |
-
SUPPORT_CHAT = ""
|
37 |
-
SUPPORT_ID = -
|
38 |
|
39 |
# Database name
|
40 |
-
DB_NAME = ""
|
41 |
|
42 |
# Bot token
|
43 |
-
TOKEN = "" # Get bot token from @BotFather on Telegram
|
44 |
|
45 |
# Owner's Telegram user ID (Must be an integer)
|
46 |
OWNER_ID = 5907205317
|
|
|
19 |
|
20 |
# <================================================ REQUIRED ======================================================>
|
21 |
# Telegram API configuration
|
22 |
+
API_ID = 20875710 # Get this value from my.telegram.org/apps
|
23 |
+
API_HASH = "8dbc37a8482664267dcf6cffc1d595da"
|
24 |
|
25 |
# Database configuration (PostgreSQL)
|
26 |
+
DATABASE_URL = "postgres://avnadmin:[email protected]:28525/defaultdb?sslmode=require"
|
27 |
|
28 |
# Event logs chat ID and message dump chat ID
|
29 |
+
EVENT_LOGS = -1002287972008
|
30 |
+
MESSAGE_DUMP = -1002287972008
|
31 |
|
32 |
# MongoDB configuration
|
33 |
+
MONGO_DB_URI = "mongodb+srv://flash:[email protected]/?retryWrites=true&w=majority&appName=flash"
|
34 |
|
35 |
# Support chat and support ID
|
36 |
+
SUPPORT_CHAT = "dragbackup"
|
37 |
+
SUPPORT_ID = -1002200859431
|
38 |
|
39 |
# Database name
|
40 |
+
DB_NAME = "dragbot"
|
41 |
|
42 |
# Bot token
|
43 |
+
TOKEN = "8165112418:AAFmVgt_I-THIyym1fUbsDdnn8uR1ToZIv4" # Get bot token from @BotFather on Telegram
|
44 |
|
45 |
# Owner's Telegram user ID (Must be an integer)
|
46 |
OWNER_ID = 5907205317
|