60 lines
2.2 KiB
Bash
60 lines
2.2 KiB
Bash
#Remove this line before deploying
|
|
_____REMOVE_THIS_LINE_____=True
|
|
|
|
# ENTER BOT TOKEN (Get your BOT_TOKEN by talking to @botfather)
|
|
BOT_TOKEN = ""
|
|
GDRIVE_FOLDER_ID = ""
|
|
OWNER_ID =
|
|
DOWNLOAD_DIR = "/usr/src/app/downloads"
|
|
DOWNLOAD_STATUS_UPDATE_INTERVAL = 5
|
|
AUTO_DELETE_MESSAGE_DURATION = 20
|
|
IS_TEAM_DRIVE = ""
|
|
TELEGRAM_API =
|
|
TELEGRAM_HASH = ""
|
|
DATABASE_URL = ""
|
|
UPSTREAM_REPO = "https://github.com/breakdowns/slam-mirrorbot"
|
|
UPSTREAM_BRANCH = "master"
|
|
# OPTIONAL CONFIG
|
|
AUTHORIZED_CHATS = ""
|
|
IGNORE_PENDING_REQUESTS = ""
|
|
USE_SERVICE_ACCOUNTS = ""
|
|
INDEX_URL = ""
|
|
UPTOBOX_TOKEN = ""
|
|
MEGA_API_KEY = ""
|
|
MEGA_EMAIL_ID = ""
|
|
MEGA_PASSWORD = ""
|
|
BLOCK_MEGA_FOLDER = ""
|
|
BLOCK_MEGA_LINKS = ""
|
|
STOP_DUPLICATE_MIRROR = ""
|
|
STOP_DUPLICATE_CLONE = ""
|
|
STOP_DUPLICATE_MEGA = ""
|
|
SHORTENER = ""
|
|
SHORTENER_API = ""
|
|
IMAGE_URL = "https://telegra.ph/file/db03910496f06094f1f7a.jpg"
|
|
# If you want to use Credentials externally from Index Links, fill these vars with the direct links
|
|
# These are optional, if you don't know, simply leave them, don't fill anything in them.
|
|
ACCOUNTS_ZIP_URL = ""
|
|
TOKEN_PICKLE_URL = ""
|
|
# To use limit leave space between number and unit. Available units is (gb or GB, tb or TB)
|
|
TORRENT_DIRECT_LIMIT = ""
|
|
TAR_UNZIP_LIMIT = ""
|
|
CLONE_LIMIT = ""
|
|
MEGA_LIMIT = ""
|
|
# Fill only if you deploying with heroku-cli and Goorm IDE
|
|
HEROKU_API_KEY = ""
|
|
HEROKU_APP_NAME = ""
|
|
# View Link button to open file Index Link in browser instead of direct download link, you can figure out if it's compatible with your Index code or not, open any video from you Index and check if the END of link from browser link bar is ?a=view, if yes make it "True" it will work (Compatible with Bhadoo Index Code)
|
|
VIEW_LINK = "False"
|
|
# Add more buttons (Three buttons are already added of Drive Link, Index Link, and View Link, you can add extra buttons too, these are optional)
|
|
# If you don't know what are below entries, simply leave them, Don't fill anything in them.
|
|
BUTTON_FOUR_NAME = ""
|
|
BUTTON_FOUR_URL = ""
|
|
BUTTON_FIVE_NAME = ""
|
|
BUTTON_FIVE_URL = ""
|
|
BUTTON_SIX_NAME = ""
|
|
BUTTON_SIX_URL = ""
|
|
# Single character for finished progress
|
|
FINISHED_PROGRESS_STR = "●"
|
|
# Single character for unfinished progress
|
|
UNFINISHED_PROGRESS_STR = "○"
|