2014-04-05 22:01:19 +00:00
|
|
|
module.exports = {
|
2014-06-15 17:26:05 +00:00
|
|
|
password: "",
|
|
|
|
port: 9000,
|
2014-06-17 16:34:13 +00:00
|
|
|
theme: "",
|
2014-06-15 17:26:05 +00:00
|
|
|
defaults: {
|
|
|
|
nick: "shout-user",
|
|
|
|
realname: "http://github.com/erming/shout",
|
|
|
|
},
|
|
|
|
networks: [{
|
2014-06-18 06:36:10 +00:00
|
|
|
host: "chat.freenode.net",
|
|
|
|
port: 6697,
|
|
|
|
tls: true,
|
2014-06-17 20:30:17 +00:00
|
|
|
onConnect: {
|
|
|
|
commands: [""],
|
|
|
|
join: [
|
2014-06-18 10:11:51 +00:00
|
|
|
"#shout-irc",
|
|
|
|
]
|
2014-06-17 20:30:17 +00:00
|
|
|
}
|
2014-06-15 17:26:05 +00:00
|
|
|
}]
|
2014-04-05 22:01:19 +00:00
|
|
|
};
|