1
0
Files
emby-tv-logo-tools/.env.example
Seth Van Niekerk 000c30d5d2
All checks were successful
Build & Push Docker Image / build-and-publish (push) Successful in 46s
containerize & enhance filtering
2026-02-08 11:58:22 -05:00

37 lines
848 B
Plaintext

# 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=
# 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 ---
# 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