Skip to content

Commit d031725

Browse files
Update config.py
1 parent 487afd7 commit d031725

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

config.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,32 +11,32 @@
1111
TG_BOT_TOKEN = os.environ.get("TG_BOT_TOKEN", "")
1212

1313
#Your API ID from my.telegram.org
14-
APP_ID = int(os.environ.get("APP_ID", ""))
14+
APP_ID = int(os.environ.get("APP_ID", "25237912"))
1515

1616
#Your API Hash from my.telegram.org
17-
API_HASH = os.environ.get("API_HASH", "")
17+
API_HASH = os.environ.get("API_HASH", "e192dcc0926b4f447b8f28187f7e533b")
1818

1919
#Your db channel Id
20-
CHANNEL_ID = int(os.environ.get("CHANNEL_ID", ""))
20+
CHANNEL_ID = int(os.environ.get("CHANNEL_ID", "-1002804196657"))
2121

2222
#OWNER ID
23-
OWNER_ID = int(os.environ.get("OWNER_ID", ""))
23+
OWNER_ID = int(os.environ.get("OWNER_ID", "5751033456"))
2424

2525
#Port
2626
PORT = os.environ.get("PORT", "8080")
2727

2828
#Database
2929
DB_URI = os.environ.get("DATABASE_URL", "")
30-
DB_NAME = os.environ.get("DATABASE_NAME", "filesharexbot")
30+
DB_NAME = os.environ.get("DATABASE_NAME", "Davi")
3131

3232
#force sub channel id, if you want enable force sub
33-
FORCE_SUB_CHANNEL = int(os.environ.get("FORCE_SUB_CHANNEL", "0"))
33+
FORCE_SUB_CHANNEL = int(os.environ.get("FORCE_SUB_CHANNEL", "-1002804196657"))
3434
JOIN_REQUEST_ENABLE = os.environ.get("JOIN_REQUEST_ENABLED", None)
3535

3636
TG_BOT_WORKERS = int(os.environ.get("TG_BOT_WORKERS", "4"))
3737

3838
#start message
39-
START_PIC = os.environ.get("START_PIC","")
39+
START_PIC = os.environ.get("START_PIC","https://files.catbox.moe/r9pwvd.jpg")
4040
START_MSG = os.environ.get("START_MESSAGE", "Hello {first}\n\nI can store private files in Specified Channel and other users can access it from special link.")
4141
try:
4242
ADMINS=[]

0 commit comments

Comments
 (0)