File tree Expand file tree Collapse file tree 2 files changed +17
-1
lines changed
examples/livestream-hd/ui Expand file tree Collapse file tree 2 files changed +17
-1
lines changed Original file line number Diff line number Diff line change 1919.env.test.local
2020.env.production.local
2121
22- /public /assets /env.js
2322/public /output.css
2423
2524npm-debug.log *
Original file line number Diff line number Diff line change 1+ ( function ( window ) {
2+ window [ "env" ] = window [ "env" ] || { } ;
3+
4+ // Environment variables
5+ window [ "env" ] [ "HUB_PUBLIC_KEY" ] = "YOUR_HUB_PUBLIC_KEY" ;
6+ window [ "env" ] [ "HUB_PRIVATE_KEY" ] = "YOUR_HUB_PRIVATE_KEY" ;
7+
8+ window [ "env" ] [ "MQTT_URI" ] = "YOUR_MQTT_URI" ;
9+ window [ "env" ] [ "MQTT_USERNAME" ] = "YOUR_MQTT_USERNAME" ;
10+ window [ "env" ] [ "MQTT_PASSWORD" ] = "YOUR_MQTT_PASSWORD" ;
11+
12+ window [ "env" ] [ "WEBRTC_USERNAME" ] = "YOUR_WEBRTC_USERNAME" ;
13+ window [ "env" ] [ "WEBRTC_PASSWORD" ] = "YOUR_WEBRTC_PASSWORD" ;
14+
15+ window [ "env" ] [ "STUN_URI" ] = "YOUR_STUN_URI" ;
16+ window [ "env" ] [ "TURN_URI" ] = "YOUR_TURN_URI" ;
17+ } ) ( this ) ;
You can’t perform that action at this time.
0 commit comments