forked from reaby/infoscreen3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config-default.js
66 lines (59 loc) · 1.97 KB
/
config-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
55
56
57
58
59
60
61
62
63
64
65
66
const host = "127.0.0.1" // ip of the infoscreen interface, use external address if not develoment
const port = 8000; // port for infoscreen
let hostUrl = "http://" + (process.env.HOST || host) + ":" + (process.env.PORT || port);
if (process.env.FRONT_PROXY || false) hostUrl = "https://" + (process.env.HOST || host);
export default {
"serverListenPort": process.env.PORT || port,
"serverHost": process.env.HOST || host,
"serverUrl": hostUrl,
"sessionKey": "generateRandomStringForSecret", // used for encrypting cookies
"streamKey": 'INFOSCREEN3', // stream key for rtmp end point
"useLocalAssets": false, // used to load javascript libraries locally from /public/assets
"mediaServer": false, // local streaming server for rtmp, see docs how to use
"defaultLocale": "en", // currently supported values are: "en","fi"
/*
* Plugins
*/
"plugins": [
"profiler", // display memory statistics at console.
],
/*
* Administrators
*/
"admins": [
{
"id": 1,
"displayName": "Administrator",
"username": process.env.ADMIN_USER || "admin",
"password": process.env.ADMIN_PASS || "admin",
"permissions": {
"isAdmin": true,
"dashboard": {
"addBundle": true,
"addSlides": true,
"addWebPage": true,
}
}
},
{
"id": 2,
"displayName": "Display Viewer",
"username": process.env.USER || "view",
"password": process.env.PASS || "view",
"permissions": {
"isAdmin": false,
}
}
],
"displays":
[
{
"name": "Main Screen",
"bundle": "default"
},
{
"name": "Secondary Screen",
"bundle": "default"
},
]
};