26 lines
No EOL
807 B
Text
26 lines
No EOL
807 B
Text
# Discord Jukebox Bot - Environment Variables Example
|
|
# Rename this file to .env and fill in your values
|
|
|
|
# Discord configuration (required)
|
|
JUKEBOX_DISCORD_TOKEN=your_discord_bot_token_here
|
|
# Discord Guild ID: NUMBERS ONLY, do not include variable name or equals sign
|
|
JUKEBOX_DISCORD_GUILD_ID=1234567890123456789
|
|
|
|
# Optional Discord settings
|
|
# JUKEBOX_DISCORD_CHANNEL_ID=specific_voice_channel_id
|
|
|
|
# Subsonic server configuration (required)
|
|
JUKEBOX_SUBSONIC_SERVER=https://your-subsonic-server.com
|
|
JUKEBOX_SUBSONIC_USERNAME=your_subsonic_username
|
|
JUKEBOX_SUBSONIC_PASSWORD=your_subsonic_password
|
|
|
|
# Optional Subsonic settings
|
|
# JUKEBOX_SUBSONIC_VERSION=1.16.1
|
|
|
|
# Jukebox settings
|
|
# JUKEBOX_AUDIO_VOLUME=0.5
|
|
# JUKEBOX_TIMEOUT_SEC=30
|
|
|
|
# Web server settings
|
|
# JUKEBOX_WEB_ENABLED=true
|
|
# JUKEBOX_WEB_ADDR=:8080 |