7ad0dd8ca2
Initial clean repository with full NFOGuard codebase: - Docker-based media file processing - Webhook integration for Radarr/Sonarr - NFO file management and organization - Emby/Jellyfin plugin integration - TMDB API integration for metadata - Smart episode and movie renaming - Comprehensive dual-repository development workflow Author: SBCrumb
28 lines
691 B
Bash
28 lines
691 B
Bash
# NFOGuard Environment Variables
|
|
|
|
# User and Group IDs
|
|
PUID=1000
|
|
PGID=1000
|
|
|
|
# Timezone
|
|
TZ=UTC
|
|
|
|
# Media path (for read-only access to scan NFO files)
|
|
MEDIA_PATH=/path/to/your/media
|
|
|
|
# Database settings (if using PostgreSQL)
|
|
# DB_USER=nfoguard
|
|
# DB_PASSWORD=your_secure_password
|
|
|
|
# Emby Plugin Deployment - Bind Mount Method (Recommended)
|
|
# Set this to the path where Emby plugins are installed on your host
|
|
# Common paths:
|
|
# - /var/lib/emby/plugins (native Emby install)
|
|
# - /path/to/emby/config/plugins (Docker Emby)
|
|
# - /config/plugins (linuxserver.io Emby)
|
|
EMBY_PLUGINS_PATH=/path/to/emby/plugins
|
|
|
|
# NFOGuard specific settings
|
|
DEBUG=false
|
|
PATH_DEBUG=false
|
|
SUPPRESS_TVDB_WARNINGS=true |