pandorabox.io/config/beerchat.js

50 lines
1.0 KiB
JavaScript
Raw Normal View History

2020-11-21 11:20:39 -08:00
module.exports = {
"remotes": [{
"name": "IRC",
"type": "irc",
"host": "irc.libera.chat",
2020-11-21 11:20:39 -08:00
"username": "pandorabot",
"password": process.env.BEERCHAT_LIBERA_PASSWORD,
2020-11-21 11:20:39 -08:00
"system_channel": "main",
"channels": {
"main": "pandorabox",
"mod": "pandorabox-mod",
"offtopic": "pandorabox-offtopic",
2020-11-21 11:20:39 -08:00
"fr": "pandorabox-fr",
2021-05-26 06:55:24 -07:00
"de": "pandorabox-de",
2020-11-21 11:20:39 -08:00
"es": "pandorabox-es",
"lag": "pandorabox-lag",
"bot": "pandorabox-bot",
"events": "pandorabox-events",
2021-05-17 13:43:45 -07:00
"nsfw": "pandorabox-nsfw",
"ideas": "pandorabox-ideas"
2020-11-21 11:20:39 -08:00
}
},{
"name": "Discord",
"type": "discord",
"token": process.env.BEERCHAT_DISCORD_TOKEN,
"system_channel": "main",
"channels": {
"main": "main",
"audit": "audit",
"mod": "mod",
"de": "de",
2021-02-07 00:07:21 -08:00
"en": "en",
2020-11-21 11:20:39 -08:00
"fr": "fr",
"es": "es",
"lag": "lag",
"vote": "vote",
"offtopic": "offtopic",
"ru": "ru",
"nsfw": "nsfw",
"grounded": "grounded",
"bot": "bot",
2021-05-17 13:43:45 -07:00
"events": "events-chat",
2021-08-07 17:06:02 -07:00
"ideas": "💡ideas",
"fun": "fun",
"reports": "reports"
2020-11-21 11:20:39 -08:00
}
}]
};