forked from Hazmi35/jukebox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
95 lines (95 loc) · 4.34 KB
/
app.json
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "Jukebox",
"description": "Just a simple Discord music bot.",
"logo": "https://raw.githubusercontent.com/Hazmi35/jukebox/main/.github/images/jukebox.png",
"env": {
"SECRET_DISCORD_TOKEN": {
"description": "Your Discord bot's token",
"required": true
},
"CONFIG_PREFIX": {
"description": "Your bot's prefix",
"required": true
},
"CONFIG_OWNERS": {
"description": "A Discord ID(s), use comma if you want to add more than 1 owner (DO NOT ADD SOMEONE ELSE ID THAT YOU DON'T TRUST)",
"required": false
},
"CONFIG_TOTALSHARDS": {
"description": "Total shards to spawn, use 'auto' or a number (default: auto)",
"required": false
},
"CONFIG_DEBUG": {
"description": "Should logging use debug level? Please note that this is not recommended in production (yes or no) (default: no)",
"required": false
},
"CONFIG_CACHE_USERS": {
"description": "Whether to cache users to memory (yes or no) (default: no)",
"required": false
},
"CONFIG_ALLOW_DUPLICATE": {
"description": "Whether to allow users to add duplicate of tracks (yes or no) (default: no)",
"required": false
},
"CONFIG_DELETE_QUEUE_TIMEOUT": {
"description": "Timeout in seconds before queue is deleted when no one is in the voice channel (default: 180 <3 minutes>)",
"required": false
},
"CONFIG_SELECT_TIMEOUT": {
"description": "Select track timeout when searching tracks (in seconds) (default: 20)",
"required": false
},
"CONFIG_DISABLE_TRACK_SELECTION": {
"description": "Whether to disable selecting tracks on play command, this will automatically selects the first track from search results (yes or no) (default: no)",
"required": false
},
"CONFIG_SEARCH_MAX_RESULTS": {
"description": "Maximum tracks to list in track selection (default: 10, max: 15)",
"required": false
},
"CONFIG_ENABLE_INLINE_VOLUME": {
"description": "Enable inline volume feature or not (yes or no) (default: no)",
"required": false
},
"CONFIG_DEFAULT_VOLUME": {
"description": "Default volume for music (Requires CONFIG_ENABLE_INLINE_VOLUME to be enabled) (default: 100)",
"required": false
},
"CONFIG_MAX_VOLUME": {
"description": "Max volume allowed for music (Requires CONFIG_ENABLE_INLINE_VOLUME to be enabled) (default: 100)",
"required": false
},
"CONFIG_CACHE_YOUTUBE_DOWNLOADS": {
"description": "Whether to download and cache tracks from youtube (yes or no) (default: no)",
"required": false
},
"CONFIG_CACHE_MAX_LENGTH": {
"description": "Max track length in seconds that are allowed to be cached (default: 5400 <1 hour 30 minutes>)",
"required": false
},
"CONFIG_DISABLE_INVITE_CMD": {
"description": "Whether to disable the invite command or not (yes or no) (default: no)",
"required": false
},
"CONFIG_STATUS_TYPE": {
"description": "What type of status does the bot use (playing, listening, or watching) (default: listening)",
"required": false
},
"CONFIG_STATUS_ACTIVITY": {
"description": "What status does the bot display (default: 'music on {guildsCount} guilds!') (available variables: guildsCount, usersCount, playingCount, and botPrefix). NOTE ON {usersCount} VARIABLE: The value will be 0 if CONFIG_CACHE_USERS is not set to yes",
"required": false
},
"CONFIG_LANGUAGE": {
"description": "Language to be used in Jukebox, uses IETF language tags, for example: en-US, en-GB, id-ID (default: en-US) (Available languages: Please see the file list in folder src/langs, you can submit your language by contributing to Jukebox project at GitHub.)",
"required": false
}
},
"repository": "https://github.com/Hazmi35/jukebox",
"stack": "container",
"formation": {
"worker": {
"quantity": 1,
"size": "free"
}
}
}