kulmapaikka-ircbot/config.example.js

42 lines
580 B
JavaScript
Raw Normal View History

var config = {
plugins: [
'Character1',
'Character2',
'Dice',
'InstantAnswer',
'Kernel',
'Tweet',
'Url',
'Weather',
'Joke',
],
irc: {
connect: true,
server: 'irc.example.com',
nick: 'My bot',
channels: ['#botdev']
},
members: {
'lanxu': {
user: /lanxu$/,
host: /^(.*)example\.com$/
},
},
owmCityIds: {
Tampere: 634963,
Helsinki: 658225
},
keys: {
twitter: {
consumerKey: '',
consumerSecret: ''
},
google: {
apiKey: ''
},
owm: {
apiKey: ''
}
}
};