Added default config file, removed config autogeneration
This commit is contained in:
parent
e6d669be2b
commit
0bdbade75f
2 changed files with 59 additions and 62 deletions
57
config.default
Normal file
57
config.default
Normal file
|
@ -0,0 +1,57 @@
|
|||
{
|
||||
"connections":
|
||||
{
|
||||
"EsperNet":
|
||||
{
|
||||
"server": "irc.esper.net",
|
||||
"nick": "MyNewCloudBot",
|
||||
"user": "cloudbot",
|
||||
"realname": "CloudBot - http://git.io/cloudbotirc",
|
||||
"nickserv_password": "",
|
||||
"channels": ["#cloudbot"],
|
||||
"invite_join": true,
|
||||
"auto_rejoin": false,
|
||||
"command_prefix": "."
|
||||
}
|
||||
},
|
||||
"disabled_plugins": [],
|
||||
"disabled_commands": [],
|
||||
"acls": {},
|
||||
"api_keys":
|
||||
{
|
||||
"tvdb": "",
|
||||
"wolframalpha": "",
|
||||
"lastfm": "",
|
||||
"rottentomatoes": "",
|
||||
"soundcloud": "",
|
||||
"twitter_consumer_key": "",
|
||||
"twitter_consumer_secret": "",
|
||||
"twitter_access_token": "",
|
||||
"twitter_access_secret": "",
|
||||
"wunderground": ""
|
||||
},
|
||||
"permission_groups": {
|
||||
"admins": ["addfactoid", "delfactoid", "ignore", "botcontrol"],
|
||||
"moderators": ["addfactoid", "delfactoid", "ignore"]
|
||||
},
|
||||
"permission_users": {
|
||||
"admins": ["example!user@example.com"],
|
||||
"moderators": ["exampleb!user@example.com"]
|
||||
},
|
||||
plugins":
|
||||
{
|
||||
"factoids":
|
||||
{
|
||||
"prefix": false
|
||||
},
|
||||
"ignore":
|
||||
{
|
||||
"ignored": []
|
||||
}
|
||||
},
|
||||
"censored_strings":
|
||||
[
|
||||
"mypass",
|
||||
"mysecret"
|
||||
]
|
||||
}
|
Reference in a new issue