29 lines
886 B
Plaintext
29 lines
886 B
Plaintext
# Lidify Configuration
|
|
# Copy to .env and edit as needed
|
|
|
|
# ==============================================================================
|
|
# REQUIRED: Path to your music library
|
|
# ==============================================================================
|
|
MUSIC_PATH=/path/to/your/music
|
|
|
|
# ==============================================================================
|
|
# OPTIONAL: Customize these if needed
|
|
# ==============================================================================
|
|
|
|
# Port to access Lidify (default: 3030)
|
|
PORT=3030
|
|
|
|
# Timezone (default: UTC)
|
|
TZ=UTC
|
|
|
|
# Session secret (auto-generated if not set)
|
|
# Generate with: openssl rand -base64 32
|
|
SESSION_SECRET=
|
|
|
|
# DockerHub username (for pulling images)
|
|
# Your DockerHub username (same as GitHub: chevron7locked)
|
|
DOCKERHUB_USERNAME=chevron7locked
|
|
|
|
# Version tag (use 'latest' or specific like 'v1.0.0')
|
|
VERSION=latest
|