-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig_example.js
59 lines (59 loc) · 1.94 KB
/
config_example.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
module.exports = {
options: {
debug: true
},
discord: {
prefix: "!",
token: "********************************"
},
twitter: {
consumer_key: '****************',
consumer_secret: '********************************',
bearer_token: `********************************`,
access_token_key: '********************************',
access_token_secret: '********************************'
},
connection: {
reconnect: true,
secure: true
},
identity: {
username: 'bot_name',
password: 'oauth:********************************',
client_id: '********************************',
client_secret: '********************************',
client_id_alt: `********************************`,
authorization: `OAuth ********************************`
},
mysql: {
host: '127.0.0.1',
user: 'mysql_username',
password: 'mysql_password',
database: 'mysql_twitch_db'
},
obs: {
address: `111.22.333.000:4444`,
pass: `secure_password`
},
newsreel: {
table: `mysql_table_name`,
object: `mysql_table_object`,
url: `https://polyphony.me/public/twitch/newsreel?channel=`
},
default: {
streamer: 'noobmaster69',
channel_id: '69696969',
obs_address: '111.22.333.000:4444',
obs_pass: 'secure_password',
client_secret: 'client_secret_for_streaming_acc',
token: `token_for_streaming_acc`,
accessToken: `accessToken_for_streaming_acc`,
clientID: `clientID_for_streaming_acc`,
access_token: `Alternate_access_token`
},
ip_address: `127.0.0.1`,
channels: ['bot_name'],
secure_origin: 'secure.com/securepage',
publicVapidKey: `**********************************************************************************`,
privateVapidKey: `*********************************************`
}