-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathexample.config.js
44 lines (43 loc) · 1.26 KB
/
example.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
module.exports = {
options: {
debug: true
},
connection: {
cluster: "aws",
reconnect: true
},
identity: {
username: "botname",
admin: 'adminname',
// Bot can't be the broadcaster or admin, don't use caps
password: 'oauth:1234abcd',
// You can get your oauth key from https://twitchapps.com/tmi/
channelId: 00000000
// Streamers Channel ID, you can get this from http://api.yucibot.nl/user/id/STREAMER
owUser: 'Battletag-1234',
// Use a - instead of a # in your battle tag
twitter: 'username',
clientId: 'id',
clientSecret: 'secret',
redirectUrl: 'http://localhost:3000/login',
// Get these at https://www.twitch.tv/kraken/oauth2/clients/new
websiteUrl: 'http://localhost:3000',
port: 3000
// If you host multiple bots on one server, then you should change this for every bot.
},
apiKeys: {
ytApiKey: 'apikey',
// Fill in your API key, get it with this tutorial: bit.ly/getYTapikey
twitter_consumer_key: 'example',
twitter_consumer_secret: 'example',
twitter_access_token_key: 'example',
twitter_access_token_secret: 'example',
// Get Twitter auth over at https://apps.twitter.com/
},
mysql: {
user: 'username',
password: 'password',
database: 'yucibot'
},
channels: ["twitchchannel"] }
// Rename this file to config.js!