forked from vital987/chrome-novnc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
47 lines (47 loc) · 1.3 KB
/
app.json
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
{
"name": "Chromium-NoVNC",
"description": "Chromium access with NoVNC",
"repository": "https://github.com/vital987/chrome-novnc.git",
"logo": "https://upload.wikimedia.org/wikipedia/commons/thumb/a/a5/Google_Chrome_icon_%28September_2014%29.svg/2048px-Google_Chrome_icon_%28September_2014%29.svg.png",
"keywords": [
"docker",
"browser",
"chrome",
"chrome",
"heroku",
"novnc",
"vnc",
"firefox"
],
"stack": "container",
"env": {
"APP_NAME": {
"description": "Heroku application name",
"required": true
},
"VNC_TITLE": {
"description": "VNC session title",
"value": "Chromium",
"required": true
},
"VNC_PASS": {
"description": "VNC server password (8+ characters)",
"required": true
},
"VNC_RESOLUTION": {
"description": "VNC server resolution in WidthxHeight format (720p preferred)",
"value": "1280x720",
"required": true
},
"VNC_SHARED": {
"description": "Run single instance on multiple devices",
"value": "false",
"required": true
},
"NO_SLEEP": {
"description": "Prevent app from sleeping",
"value": "false",
"required": true
}
}
}