generated from Kidneedsmemes/disc-11
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
64 lines (43 loc) · 2.77 KB
/
.env.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# Use string ("" <==) if you need whitespace
SECRET_DISCORD_TOKEN=Njk1NjY0ODU4NDA1Nzk3ODg4.dQw4w9WgXcQ.TmV2ZXIgZ29ubmEgZ2l2ZSB5b3UgdXA
# Your Discord bot's token
CONFIG_PREFIX="!"
# Your bot's prefix (example !play)
CONFIG_EMBED_COLOR=7289DA
# The color for your bot's embed message (hex code without hashtag)
CONFIG_OWNERS=319872685897416725
# A Discord ID, use comma (,) if you want to add more than 1 owner (DO NOT ADD SOMEONE ELSE ID THAT YOU DON'T TRUST)
CONFIG_YOUTUBE_DATA_STRATEGY=scrape
# Strategy for getting video data from YouTube (scrape or api) (default: scrape) (note: I recommends using api because it's more mature)
SECRET_YT_API_KEY=IAzSjcSjaIEWakos-_AKfaKejiwdjiASJIAsDs
# Your YouTube API key for retrieving video data from YouTube if CONFIG_YOUTUBE_DATA_STRATEGY is set to api
CONFIG_TOTALSHARDS=auto
# Total shards to spawn, use "auto" or a number (default: auto)
CONFIG_DEFAULT_VOLUME=50
# Default volume for music player (default: 50)
CONFIG_MAX_VOLUME=100
# Max volume allowed for music player (default: 100)
CONFIG_ALLOW_DUPLICATE=no
# Whether to allow users to add duplicate of music (default: no)
CONFIG_DISABLE_SONG_SELECTION=no
# Whether to disable the music selection on play command, this will automatically selects the first order from the search results (default: no)
CONFIG_SEARCH_MAX_RESULTS=10
# Maximum music to list in the music selection (default: 10, max: 10)
CONFIG_SELECT_TIMEOUT=20
# Music selection timeout when searching a music (in seconds) (default: 20 <20 seconds>)
CONFIG_DELETE_QUEUE_TIMEOUT=180
# Timeout in seconds before the queue is deleted when no one is in the voice channel (default: 180 <3 minutes>)
CONFIG_CACHE_MAX_LENGTH=5400
# Max music length in seconds that are allowed to be cached (default: 5400 <1 hour 30 minutes>)
CONFIG_CACHE_YOUTUBE_DOWNLOADS=no
# Whether to download and cache videos from YouTube (default: no)
CONFIG_DISABLE_INVITE_CMD=no
# Whether to disable invite command or not (default: no)
CONFIG_DEBUG=no
# Should logging uses debug level? Please note that this is not recommended in production (default: no)
CONFIG_STATUS_TYPE=listening
# What type of status does the bot use? (available types: playing, listening, or watching) (default: listening)
CONFIG_STATUS_ACTIVITY="music on {guildsCount} servers"
# What status does the bot display? (available variables: guildsCount, usersCount, playingCount, and botPrefix) (default: music on {guildsCount} servers)
# NOTE ON {usersCount} VARIABLE: This only displays cached usersCount, to get full usersCount, please enable CONFIG_FETCH_ALL_USERS
CONFIG_FETCH_ALL_USERS=no # Whether to fetch all users on startup (warning: increased memory usage especially for bots with large users) (note: You need to enable privileged GUILD_MEMBERS Intents on the Discord's developer page) (default: no)