# =========================================== # Environment Variables for Docker Compose # =========================================== # This file provides example environment variables for running the system with Docker Compose. # # USAGE: # 1. Copy this file to .nocr.env in the same directory # 2. Fill in your actual values (removing placeholder text) # 3. Run: docker-compose up # # SECURITY NOTE: # The .nocr.env file is gitignored and should NEVER be committed to version control. # For K8s deployments, use Secrets instead of .nocr.env files. # =========================================== # ----------------- # Telegram Listener # ----------------- # WTelegram API credentials - obtain from https://my.telegram.org/apps # Your Telegram API ID (numeric) WTelegramClientOptions__ApiId=YOUR_API_ID_HERE # Your Telegram API Hash (alphanumeric string) WTelegramClientOptions__ApiHash=YOUR_API_HASH_HERE # Your phone number with country code (e.g., 79167310711) WTelegramClientOptions__PhoneNumber=YOUR_PHONE_NUMBER_HERE # ----------------- # Telegram Client (Bot) # ----------------- # Bot token from @BotFather on Telegram # Telegram Bot API Token TelegramBotOptions__Token=YOUR_BOT_TOKEN_HERE # ----------------- # Optional: Debug Mode # ----------------- # Set to "true" to enable configuration debug logging on service startup # This will print masked configuration values to console for troubleshooting # NOCR_DEBUG_MODE=true