gitlab-to-irc/config.example.js

22 lines
489 B
JavaScript
Raw Normal View History

2016-06-23 19:36:35 +00:00
module.exports = {
// IRC server to connect to.
server: 'chat.freenode.net',
// List of channels / people to report to.
channels: ['#horsejs'],
// IRC nick/names for the bot
nick: 'gitlab-bot',
userName: 'gitlab-bot',
realName: 'gitlab-bot',
// Secret as entered in the Gitlab Webhook instance.
secret: '12345',
// Port on which to run.
port: 1337,
// Network interface on which to run the webhook server.
hostname: '0.0.0.0'
}