feat: Add bulk uploading
All checks were successful
Build Docker / BuildImage (push) Successful in 1m44s

This commit is contained in:
2025-07-29 12:27:32 +10:00
parent 402e321396
commit 55e6306e35
5 changed files with 116 additions and 1 deletions

View File

@@ -262,6 +262,12 @@ def startTGBot(mainThread: bool = False):
print(
"Telegram bot token or name not set. Notifications via Telegram will not work.")
return
# Check if DEV=true
if os.getenv('DEV', 'false').lower() == 'true':
print("Development mode is enabled. Skipping Telegram bot start.")
return
if TG_bot_running:
print("Telegram bot is already running.")