hardlounge/config.js

21 lines
327 B
JavaScript
Raw Normal View History

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