added example config

This commit is contained in:
Jonas Leder 2020-07-27 14:55:44 +02:00
parent bd59969f0e
commit 4ed7df8003
1 changed files with 22 additions and 0 deletions

22
config-example.py Normal file
View File

@ -0,0 +1,22 @@
prefix = "!" #the prefix for the bot commands
token = "" #the login token of the bot
sqlServer = ""
sqlUser = ""
sqlPassword = ""
sqlDatabase = ""
roleMap = {
"tilera" : "tilera",
"Server Administration" : "admin",
"Anvilcraft Team" : "team",
"Moderator" : "mod",
"Mod Dev" : "dev",
"Modpack Creator" : "modpack",
"YOUTUBER" : "youtube",
"Streamer" : "stream"
}
ignoreRoles = [
"Bot"
]