-
Notifications
You must be signed in to change notification settings - Fork 84
/
_default.js
54 lines (47 loc) · 951 Bytes
/
_default.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
module.exports = {
// Redis, leave blank to connect to localhost:6379 with "craig:" as the prefix
redis: {},
// redis: {
// host: 'localhost',
// port: 6379,
// keyPrefix: 'craig:'
// },
// For drive upload in Google Drive
drive: {
clientId: '',
clientSecret: ''
},
// For drive upload in Microsoft OneDrive
microsoft: {
clientId: '',
clientSecret: '',
redirect: ''
},
// For drive upload in Dropbox
dropbox: {
clientId: '',
clientSecret: '',
folderName: 'CraigChat'
},
// for refresh patrons job
patreon: {
campaignId: 0,
accessToken: '',
tiers: {},
skipUsers: []
},
downloads: {
expiration: 24 * 60 * 60 * 1000,
path: '../download/downloads'
},
recording: {
fallbackExpiration: 24 * 60 * 60 * 1000,
path: '../../rec',
skipIds: []
},
timezone: 'America/New_York',
loggerLevel: 'debug',
tasks: {
ignore: []
}
};