This repository has been archived by the owner on Jun 9, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathcinchize.yml
72 lines (70 loc) · 1.74 KB
/
cinchize.yml
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
---
# Plugins used for all configs
plugins: &plugins
plugins:
-
class: "Cinch::Plugins::Admin"
options:
:bot_admin_password: "test"
-
class: "Cinch::Plugins::Commands"
-
class: "Cinch::Plugins::FiveByFun"
-
class: "Cinch::Plugins::Identify"
options:
:password: "test" # Enter your password here
:type: :nickserv # Most servers use nickserv, so setting this as the sane default.
-
class: "Cinch::Plugins::Links"
-
class: "Cinch::Plugins::Schedule"
options:
:ical_uri: "http://www.example.com/basic.ics"
-
class: "Cinch::Plugins::Suggestions"
-
class: "Cinch::Plugins::Shoutcast"
options:
:shoutcast_uri: "http://www.example.com/"
-
class: "Cinch::Plugins::Twitter"
options:
:channel: "#test"
:twitter_user: "test"
:twitter_consumer_key: "test"
:twitter_consumer_secret: "test"
:twitter_access_token: "test"
:twitter_access_token_secret: "test"
# The base configuration, Freenode in the example configuration.
network_base: &network_base
<<: *plugins
server: irc.freenode.net
port: 6667
options:
log_output: true
dir_mode: normal
dir: "pid"
servers:
network_test:
<<: *network_base
nick: botname_test
channels:
- "#cinch-bots"
shared:
Bot_Nick: "botname"
Backup_Bot_Nick: "botname-backup"
Live_Url: "example.com/live"
Sinatra_Url: "http://www.example.com"
Twitter_User: "ExampleUser"
network_live:
<<: *network_base
nick: botname
channels:
- "#cinch-bots"
shared:
Bot_Nick: "botname"
Backup_Bot_Nick: "botname-backup"
Live_Url: "example.com/live"
Sinatra_Url: "http://www.example.com"
Twitter_User: "ExampleUser"