-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy path.env.example
More file actions
24 lines (18 loc) · 819 Bytes
/
.env.example
File metadata and controls
24 lines (18 loc) · 819 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Copy this to .env and customize
# Authentication credentials
AUTH_USERNAME=admin
AUTH_PASSWORD=your-secure-password-here
# Music directory inside container (keep as /music)
MUSIC_DIR=/music
# Music directory on your host machine
# Windows: MUSIC_DIR_HOST=./music or C:/Users/YourName/Music
# Linux/Mac: MUSIC_DIR_HOST=./music or /home/yourname/Music
MUSIC_DIR_HOST=./music
# ==============================================================================
# DOWNLOAD QUEUE SETTINGS
# ==============================================================================
# Maximum number of concurrent downloads (default: 3)
MAX_CONCURRENT_DOWNLOADS=3
# Auto-process downloads when added to queue (default: true)
# Set to false for manual start/stop control (not recommended for multi-user setups)
QUEUE_AUTO_PROCESS=true