File tree 2 files changed +25
-7
lines changed
2 files changed +25
-7
lines changed Original file line number Diff line number Diff line change 1
- TWITCH_CLIENT_ID = xxxxxxxxxxxxx
2
- TWITCH_CLIENT_SECRET = xxxxxxxxxx
3
- TWITCH_TOKEN_PATH = /tokens/tokens.json
1
+ # Twitch API Client ID and Secret
2
+ ALVEUS_CLIENT_ID = xxxxxxxxxxxxx
3
+ ALVEUS_CLIENT_SECRET = xxxxxxxxxx
4
+ ALVEUS_TOKEN_PATH = /tokens/tokens.json
4
5
6
+ # Alveus Twitch Account ID for some API calls (Stream Info and Markers)
7
+ # ALVEUS_TWITCH_ID=123456789
8
+
9
+ # Comma separated list of twitch channels to monitor
10
+ # TWITCH_CHANNELS="xxx,yyy"
11
+
12
+ # Local OBS Websocket URL and Key
5
13
OBS_WS = " ws://127.0.0.1:12345"
6
14
OBS_KEY = " xxxxxxx"
7
15
16
+ # OBS Bot Host and Port
8
17
OBSBOT_HOST = " 127.0.0.1"
9
18
OBSBOT_PORT = 12345
10
19
20
+ # Courier API Key for sending messages
11
21
COURIER_KEY = " xxxxxxxxx"
12
22
23
+ # Axis
13
24
AXIS_USERNAME = xxxxxx
14
25
AXIS_PASSWORD = xxxxxxxx
15
26
16
- AXIS_CAMERA_IP = " 127.0.0.1"
17
-
27
+ # Axis Camera IPs (see axisCameras in config)
28
+ # AXIS_PASTURE_IP="georgie.local"
29
+ # AXIS_GEORGIE_IP="georgie.local"
18
30
31
+ # Unifi
19
32
UNIFI_AP_MACS = "{"ee:ee:ee:ee:ee:ee":"test"}"
20
33
UNIFI_IP = " 127.0.0.1"
21
34
UNIFI_USERNAME = ' xxxx'
Original file line number Diff line number Diff line change 2
2
const devPrefix = process . env . NODE_ENV == 'development' ? `$` : '!' ;
3
3
const commandPrefix = devPrefix ;
4
4
5
- const twitchChannelList = [ "spacevoyage" , "alveussanctuary" , "alveusgg" ] ;
5
+ const twitchChannelList = process . env . TWITCH_CHANNELS ?
6
+ process . env . TWITCH_CHANNELS . split ( "," ) . map ( ( channel ) => channel . trim ( ) ) :
7
+ [ "spacevoyage" , "alveussanctuary" , "alveusgg" ] ;
8
+
9
+ const alveusTwitchID = process . env . ALVEUS_TWITCH_ID ?
10
+ Number . parseInt ( process . env . ALVEUS_TWITCH_ID ) :
11
+ 636587384 ;
6
12
7
- const alveusTwitchID = 636587384 ;
8
13
const pauseNotify = true ;
9
14
const pauseGameChange = true ;
10
15
const pauseTwitchMarker = true ;
You can’t perform that action at this time.
0 commit comments