beerchat_proxy/beerchat.js
2021-11-28 19:51:40 +01:00

25 lines
490 B
JavaScript

module.exports = {
"remotes": [{
"debug": false,
"announce_channel": false,
"name": "IRC",
"type": "irc",
"host": "irc.libera.chat",
"username": "beerchat-test",
"password": "dummy",
"system_channel": "main",
"channels": {
"main": "beerchat-test"
}
},{
"debug": true,
"announce_channel": false,
"name": "Discord",
"type": "discord",
"token": process.env.BEERCHAT_DISCORD_TEST_TOKEN,
"system_channel": "main",
"channels": {
"main": "main"
}
}]
};