# Copy to .env: cp .env.example .env # Required - Emby Server Configuration EMBY_SERVER_URL=https://your-emby-server.com EMBY_API_KEY=your_api_key_here # Mode: copy (default) or clear MODE=copy # Safety: true = dry run, false = execute DRY_RUN=true # Test on first channel only FIRST_ONLY=false # Overwrite existing logos (copy mode only) FORCE=false # Filter by tags (comma-separated, e.g. sports,news) TAGS= # List all available tags and exit LIST_TAGS=false # Debug: show tag structure from first channel DEBUG_TAGS=false # Cron schedule (minute hour day month weekday) # Examples: 0 3 * * * (daily 3am), 0 */6 * * * (every 6hrs) CRON_SCHEDULE=0 3 * * * # Run once and exit (ignores cron) RUN_ONCE=false # Timezone (e.g. America/New_York, Europe/London) TZ=UTC # --- Example Configurations --- # Debug tags: DEBUG_TAGS=true RUN_ONCE=true # List tags: LIST_TAGS=true RUN_ONCE=true # Test: DRY_RUN=true FIRST_ONLY=true # Production: DRY_RUN=false MODE=copy # By tags: TAGS=sports,news DRY_RUN=false # Run now: RUN_ONCE=true DRY_RUN=false