-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathconfig.json.template
58 lines (57 loc) · 1.49 KB
/
config.json.template
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
{
"owner": "$OWNER",
"info": "$INFO",
"bot": {
"nick": "$NICK",
"realname": "$REALNAME",
"user": "$USERNAME",
"server": "$SERVER",
"channels": ["$CHANNEL"],
"plugins": {
"plugins": [
"Rubybot::Plugins::BotAdmin",
"Rubybot::Plugins::Factoids",
"Rubybot::Plugins::Github",
"Rubybot::Plugins::GithubLinker",
"Rubybot::Plugins::Google",
"Rubybot::Plugins::HttpServer",
"Rubybot::Plugins::Pinglists",
"Rubybot::Plugins::Sed",
"Rubybot::Plugins::Tweet",
"Rubybot::Plugins::Youtube"
],
"options": {
"Rubybot::Plugins::Factoids": {
"filename": "factoids.json"
},
"Rubybot::Plugins::Github": {
"repos": {
"$GITHUB_REPO": [
"$CHANNEL"
]
}
},
"Rubybot::Plugins::GithubLinker": {
"repos": {
}
},
"Rubybot::Plugins::HttpServer": {
"host": "0.0.0.0",
"port": "$PORT"
},
"Rubybot::Plugins::Pinglists": {
"filename": "pinglists.json"
},
"Rubybot::Plugins::Tweet": {
"consumer_key": "$TWITTER_CONSUMER_KEY",
"consumer_secret": "$TWITTER_CONSUMER_SECRET",
"access_token": "$TWITTER_ACCESS_TOKEN",
"access_token_secret": "$TWITTER_ACCESS_TOKEN_SECRET"
},
"Rubybot::Plugins::Youtube": {
"yt_key": "$YOUTUBE_KEY"
}
}
}
}
}