39 lines
1.1 KiB
Bash
39 lines
1.1 KiB
Bash
# ===========================================
|
|
# Required - You MUST change these values
|
|
# ===========================================
|
|
|
|
# Database password for PostgreSQL
|
|
DB_PASSWORD=change_me_to_secure_password
|
|
|
|
# Application secret key (use: openssl rand -hex 32)
|
|
SECRET_KEY=change_me_to_random_string_at_least_32_characters
|
|
|
|
# ===========================================
|
|
# Optional - These have sensible defaults
|
|
# ===========================================
|
|
|
|
# External port to access the application
|
|
PORT=8080
|
|
|
|
# Download settings
|
|
DOWNLOAD_PARALLEL_LIMIT=3
|
|
DOWNLOAD_RATE_LIMIT=3.0
|
|
DEFAULT_CHECK_INTERVAL=3600
|
|
|
|
# Logging
|
|
LOG_LEVEL=INFO
|
|
DEBUG=false
|
|
|
|
# ===========================================
|
|
# Advanced - Only change if you know what you're doing
|
|
# ===========================================
|
|
|
|
# Paths inside container (mapped to Docker volumes)
|
|
DOWNLOAD_PATH=/data/downloads
|
|
CONFIG_PATH=/data/config
|
|
COOKIES_PATH=/data/cookies
|
|
|
|
# These are constructed by docker-compose, only set for local development
|
|
# DATABASE_URL=postgresql://gdl:password@localhost:5432/gallery_subscriber
|
|
# REDIS_URL=redis://localhost:6379/0
|