hardlounge/config.js

23 lines
385 B
JavaScript
Raw Normal View History

2014-04-05 22:01:19 +00:00
module.exports = {
2014-06-15 17:26:05 +00:00
port: 9000,
2014-06-17 16:34:13 +00:00
theme: "",
2014-06-23 17:28:36 +00:00
users: {
"username": {
password: "",
nick: "shout",
realname: "http://github.com/erming/shout",
log: false,
networks: [{
host: "irc.freenode.org",
port: 6667,
tls: false,
onConnect: {
join: [
"#shout-irc"
]
}
}]
2014-06-17 20:30:17 +00:00
}
2014-06-23 17:28:36 +00:00
}
2014-04-05 22:01:19 +00:00
};