Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions config.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,21 +14,21 @@
STRING_SESSION = None

# Bot token @Botfather
BOT_TOKEN = os.environ.get("BOT_TOKEN", "")
BOT_TOKEN = os.environ.get("BOT_TOKEN", "8188425670:AAHNf7rkpw194z05oi9WkbAT-lSeBa6I5Do")

# Your API ID from my.telegram.org
API_ID = int(os.environ.get("API_ID", ""))
API_ID = int(os.environ.get("API_ID", "26271673"))

# Your API Hash from my.telegram.org
API_HASH = os.environ.get("API_HASH", "")
API_HASH = os.environ.get("API_HASH", "0e807111856890e4770b3e5a3324ec5f")

# Your Owner / Admin Id For Broadcast
ADMINS = int(os.environ.get("ADMINS", "6073523936"))
ADMINS = int(os.environ.get("ADMINS", "820017857"))

# Your Channel Id In Which Bot Upload Downloaded Video/File/Message etc.
# And Make Your Bot Admin In this channel with full rights.
# if you don't want to upload in channel then leave it blank don't fill anything.
CHANNEL_ID = os.environ.get("CHANNEL_ID", "")
CHANNEL_ID = os.environ.get("CHANNEL_ID", "-1003369314764")

# Your Mongodb Database Url
# Warning - Give Db uri in deploy server environment variable, don't give in repo.
Expand Down