Skip to content

Commit

Permalink
.env.example
Browse files Browse the repository at this point in the history
  • Loading branch information
hwangsihu authored Sep 5, 2024
1 parent 35115d8 commit cd1edc4
Showing 1 changed file with 19 additions and 19 deletions.
38 changes: 19 additions & 19 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
TOKEN= "" # Your bot token.
CLIENT_ID= "" # Your bot's client ID (If this value is left blank, bots cannot be invited using /invite or /about commands.).
DEFAULT_LANGUAGE= "EnglishUS" # Default language for bot
PREFIX= "!" # Your prefix.
OWNER_IDS= ["",""] # Your discord id (You can add multiple ids.).
GUILD_ID= "" # Your server ID (If you want to use the bot for a single server).
TOPGG= "" # Your Top.gg API key. Obtain this from https://top.gg
KEEP_ALIVE= "false" # true for keep alive in https://replit.com
LOG_CHANNEL_ID= "" # If you enter this, you will be able to receive the status of Lavalink nodes and guild join/leave logs through the corresponding channel.
LOG_COMMANDS_ID= "" # The channel ID where command usage logs will be sent.
BOT_STATUS= "online" # Your bot status (online, dnd, idle, invisible or offline).
BOT_ACTIVITY_TYPE= 0 # Activity type is a number from 0 to 5. See more here: https://discord.com/developers/docs/topics/gateway-events#activity-object-activity-types
BOT_ACTIVITY=" Lavamusic" # Your bot activity.
DATABASE_URL= "" # Your database url (If you want to use sqlite, then you can leave it blank.).
AUTO_NODE=" false" # true for auto node. It is given from lavainfo-api (https://lavainfo-api.deno.dev).
SEARCH_ENGINE= "YouTubeMusic" # Search engine to be used when playing the song. You can use: YouTube, YouTubeMusic, SoundCloud, Spotify, Apple, Deezer, Yandex and JioSaavn
MAX_PLAYLIST_SIZE= "100" # Max playlist size.
MAX_QUEUE_SIZE= "100" # Max queue size.
TOKEN=""
CLIENT_ID=""
DEFAULT_LANGUAGE="EnglishUS" # Check out the list of supported languages ​​at Translation.md
PREFIX="!"
OWNER_IDS=["",""]
GUILD_ID="" # Leave blank if you don't want to use a single server
TOPGG="" # Optional, top.gg API key
KEEP_ALIVE="false" # true for keep alive in https://replit.com
LOG_CHANNEL_ID="" # Optional, use if you want to receive guild join/leave and Lavalink node connection status
LOG_COMMANDS_ID="" # Optional, use this if you want to get command usage logs
BOT_STATUS="online" # You can use online, dnd, idle, invisible or offline
BOT_ACTIVITY_TYPE=0 # See more here: https://discord.com/developers/docs/topics/gateway-events#activity-object-activity-types
BOT_ACTIVITY="Lavamusic"
DATABASE_URL= "" # Leave blank to use sqlite
AUTO_NODE="false" # true for auto node. It is given from lavainfo-api (https://lavainfo-api.deno.dev).
SEARCH_ENGINE="YouTubeMusic" # Search engine to be used when playing the song. You can use: YouTube, YouTubeMusic, SoundCloud, Spotify, Apple, Deezer, Yandex and JioSaavn
MAX_PLAYLIST_SIZE="100"
MAX_QUEUE_SIZE="100"

# Configuration for multiple Lavalink servers
LAVALINK_SERVERS = '[
LAVALINK_SERVERS='[
{"url":"localhost:2333","auth":"youshallnotpass","name":"Local Node","secure":false},
{"url":"localhost:2333","auth":"youshallnotpass2","name":"Another Node","secure":false}
]'

0 comments on commit cd1edc4

Please sign in to comment.