-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfig.json.example
28 lines (28 loc) · 1.44 KB
/
config.json.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
{
"administrators": ["admin-id1", "admin-id2"],
"default_prefix": "t-",
"logs_channel": "id of the channel where the logs will be sent",
"use_sentry": true, //if you want to use sentry for error handling
"spotify_api": true, //if you want to be able to use spotify api for music (read README.md)
"suno_api": true, //if you want to use suno AI to generate and play songs (read README.md)
"top.gg": true, //if you are going to use top.gg for guildCreate and guildDelete events and the rep command
"credentials": {
"dotenv": true, //if your tokens and api keys are in the .env file, if you want them in this file, set it to false.
"CREDENTIAL_NAME": "credential", //just put your credentials here if dotenv is set to false
"GOOGLE_API_KEY": "your-api-key",
"...": "..."
},
"enabled_commands": ["config", "development", "fun", "information", "moderation", "music", "social", "utility"],
"support_server_invite": "https://discord.gg/invite",
"activities": [
["activity", "Type"],
["my soul", "Watching"],
["your beats", "Listening"]
],
"strings": {
"ready": "Bot ready: {{guilds}} servers and {{users}} users (in cache).",
"server_joined": "I joined {{guild}}. It has {{membercount}} members. Now I'm in {{guildcount}} servers.",
"server_left": "I left {{guild}}. Now I'm in {{guildcount}} servers."
}
}
//remember to remove the //comments, else it won't work