56 lines
2.4 KiB
Plaintext
56 lines
2.4 KiB
Plaintext
#=====================================================================
|
|
# Discord Jellyseerr Bot - Environment Configuration
|
|
#=====================================================================
|
|
# Copy this file to .env and fill in your values
|
|
# All sensitive information should be kept secure
|
|
|
|
#---------------------------------------------------------------------
|
|
# Discord Bot Settings (REQUIRED)
|
|
#---------------------------------------------------------------------
|
|
# Your Discord Bot Token from the Discord Developer Portal
|
|
# Create one at: https://discord.com/developers/applications
|
|
DISCORD_BOT_TOKEN=your_discord_bot_token_here
|
|
|
|
# Command prefix for bot commands (default: !)
|
|
BOT_PREFIX=!
|
|
|
|
# Color for embeds in Discord messages (hex format)
|
|
# Default: 0x3498db (Discord blue)
|
|
EMBED_COLOR=0x3498db
|
|
|
|
#---------------------------------------------------------------------
|
|
# Jellyseerr Connection Settings (REQUIRED)
|
|
#---------------------------------------------------------------------
|
|
# URL of your Jellyseerr instance including protocol and port
|
|
# Example: http://localhost:5055 or https://jellyseerr.yourdomain.com
|
|
JELLYSEERR_URL=http://your-jellyseerr-instance:5055
|
|
|
|
# Authentication Settings (using local Jellyseerr user account)
|
|
JELLYSEERR_EMAIL=your_jellyseerr_email@example.com
|
|
JELLYSEERR_PASSWORD=your_jellyseerr_password
|
|
|
|
# Set to false if you want to disable local login (not recommended)
|
|
# When disabled, some functionality may be limited
|
|
JELLYSEERR_LOCAL_LOGIN=true
|
|
|
|
# Number of days until authentication cookie expires (default: 7)
|
|
AUTH_COOKIE_EXPIRY=7
|
|
|
|
#---------------------------------------------------------------------
|
|
# Notifications
|
|
#---------------------------------------------------------------------
|
|
# NOTE: For notifications about media requests and availability,
|
|
# use Jellyseerr's built-in Discord webhook integration.
|
|
# Configure webhooks directly in the Jellyseerr web interface
|
|
# under Settings > Notifications.
|
|
|
|
#---------------------------------------------------------------------
|
|
# Performance & Debug Settings
|
|
#---------------------------------------------------------------------
|
|
# API request timeout in seconds
|
|
# Increase this value if your Jellyseerr instance is slow to respond
|
|
REQUEST_TIMEOUT=30
|
|
|
|
# Set to true to enable verbose logging (useful for troubleshooting)
|
|
# Warning: Debug mode generates large log files and exposes sensitive data
|
|
DEBUG_MODE=false |