Fixed misc bugs

This commit is contained in:
2025-10-15 13:31:18 +13:00
parent 9f5a25fcf5
commit 7580dc3f94
13 changed files with 609 additions and 47 deletions
+13 -1
View File
@@ -1,6 +1,18 @@
# BDFR Web Interface - Docker Environment Configuration
# Copy this file to .env and update the values as needed
# ============================================================================
# DOCKER USER CONFIGURATION (Important for file permissions)
# ============================================================================
# Set these to match your host user's UID and GID to avoid permission issues
# Find your UID/GID by running: id
# On Linux/Mac: id -u (for UID) and id -g (for GID)
# On Windows with WSL: wsl id -u
# Default: 1000:1000 (common default user on Linux systems)
PUID=1000
PGID=1000
# ============================================================================
# REDDIT OAUTH CONFIGURATION (REQUIRED for authenticated features)
# ============================================================================
@@ -41,7 +53,7 @@ DEBUG=false
# Directory where downloads will be stored (inside container)
# This is mounted from ./downloads on the host
BDFR_DOWNLOAD_DIR=/downloads
BDFR_DOWNLOAD_DIR=/app/downloads
# Directory for application data and databases (inside container)
# This is mounted from ./data on the host