-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
46 lines (44 loc) · 1.04 KB
/
index.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
const uwOptions = {}
if (process.env.UWAVE_TOKEN) {
uwOptions.token = process.env.UWAVE_TOKEN
} else {
uwOptions.email = process.env.UWAVE_EMAIL
uwOptions.password = process.env.UWAVE_PASSWORD
}
module.exports = {
mongo: 'mongodb://localhost:27017/sekshi',
adapters: [
['slack', { token: process.env.SLACK_TOKEN }],
['uwave', {
...uwOptions,
api: 'https://wlk.yt/api',
socket: 'wss://wlk.yt'
}]
],
plugins: [
['serve', {
enable: true,
baseUrl: 'https://munar.wlk.yt/'
}],
['usage', { enable: true }],
['user-log', { enable: true }],
['emotes', { enable: true }],
['karma', { enable: true }],
['reddit-feed', {
enable: true,
subreddits: ['kindie', 'koreanmusic', 'khiphop', 'koreanrock'],
output: 'uwave'
}],
['triggers', { enable: true }],
['dj-history-skip', {
enable: true,
limit: 25,
lockskipPosition: 1
}],
['waitlist-raffle', {
enable: true,
duration: 60
}],
['media-blacklist', { enable: true }]
]
}