30 lines
826 B
Plaintext

# Rekordbox Sync Desktop Application Configuration
# Copy this file to .env and fill in your values
# S3 Configuration
S3_ENDPOINT=https://garage.geertrademakers.nl
S3_REGION=garage
S3_ACCESS_KEY_ID=your_access_key_here
S3_SECRET_ACCESS_KEY=your_secret_key_here
S3_BUCKET_NAME=music
S3_USE_SSL=true
# Sync Configuration
SYNC_LOCAL_PATH=/path/to/your/music/folder
SYNC_INTERVAL=30000
SYNC_AUTO_START=false
SYNC_CONFLICT_RESOLUTION=newer-wins
# UI Configuration
UI_THEME=system
UI_LANGUAGE=en
UI_NOTIFICATIONS=true
UI_MINIMIZE_TO_TRAY=true
# Notes:
# - SYNC_INTERVAL is in milliseconds (30000 = 30 seconds)
# - SYNC_CONFLICT_RESOLUTION options: newer-wins, local-wins, remote-wins
# - UI_THEME options: system, light, dark
# - Boolean values: true/false (as strings)
# - Paths should use forward slashes (/) even on Windows