added var

add DATABASE_URL var for database
This commit is contained in:
levina 2021-11-14 06:55:11 +07:00 committed by GitHub
parent 1356c93862
commit 64cc9413df
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,6 +12,7 @@ BOT_TOKEN = getenv("BOT_TOKEN")
BOT_NAME = getenv("BOT_NAME", "Video Stream") BOT_NAME = getenv("BOT_NAME", "Video Stream")
API_ID = int(getenv("API_ID")) API_ID = int(getenv("API_ID"))
API_HASH = getenv("API_HASH") API_HASH = getenv("API_HASH")
DATABASE_URL = os.getenv("DATABASE_URL")
OWNER_NAME = getenv("OWNER_NAME", "dlwrml") OWNER_NAME = getenv("OWNER_NAME", "dlwrml")
ALIVE_NAME = getenv("ALIVE_NAME", "Levina") ALIVE_NAME = getenv("ALIVE_NAME", "Levina")
BOT_USERNAME = getenv("BOT_USERNAME", "veezvideobot") BOT_USERNAME = getenv("BOT_USERNAME", "veezvideobot")