Skip to content

Commit

Permalink
Update config.example.json
Browse files Browse the repository at this point in the history
  • Loading branch information
CPS7 authored Aug 21, 2024
1 parent b0c9498 commit 608abe3
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions config.example.json
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
{
"clientId": "",
"clientId": "YOUR_CLIENT_ID_HERE",
"prefix": "!",
"messages": {
"COOLDOWN_MESSAGE": "You are on <duration> cooldown!"
},
"ownerID": [""], //put owner's user id here
"adminId": [""], //put user id of people you want to make admin
"uri": "", //Enter your mongo uri here
"ownerID": ["YOUR_USER_ID_HERE"],
"adminId": ["ADMIN_USER_ID_HERE"],
"uri": "YOUR_MONGO_URI_HERE",
"nodes": [
{
"host": "", //your lavalink ip here
"identifier": "",//name your lavalink anything
"password": "youshouldpass", //password of your lavalink
"port": 12345, //port
"host": "YOUR_LAVALINK_HOST_HERE",
"identifier": "YOUR_LAVALINK_IDENTIFIER_HERE",
"password": "YOUR_LAVALINK_PASSWORD_HERE",
"port": 2333,
"retryAmount": 1000,
"retrydelay": 10000,
"resumeStatus": true,
"resumeTimeout": 1000,
"secure": false
}
}
]
}
}

0 comments on commit 608abe3

Please sign in to comment.