rapid interations of server side app and firefox extension

This commit is contained in:
Bryan Van Deusen
2026-01-24 22:52:51 -05:00
commit b9b8048a2d
81 changed files with 9675 additions and 0 deletions
+38
View File
@@ -0,0 +1,38 @@
# ===========================================
# 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