-
Notifications
You must be signed in to change notification settings - Fork 108
/
app.json
39 lines (39 loc) · 1.14 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
{
"name": "Lightning",
"description": "Lighning data visualization notebooks.",
"keywords": [
"visualization",
"data",
"dataviz"
],
"repository": "https://github.com/mathisonian/lightning",
"env": {
"NODE_ENV": "production",
"BUILDPACK_URL": "https://github.com/lightning-viz/heroku-buildpack-nodejs",
"LD_LIBRARY_PATH": "/usr/local/lib:/usr/lib:/lib:/app/vendor/phantomjs/lib",
"PATH": "/usr/local/bin:/usr/bin:/bin:/app/vendor/phantomjs/bin",
"LIGHTNING_USERNAME": {
"description": "Username to secure this instance with basic auth. (optional)",
"required": false
},
"LIGHTNING_PASSWORD": {
"description": "Password to secure this instance with basic auth. (optional)",
"required": false
},
"S3_BUCKET": {
"description": "The name of the s3 bucket to use for hosting images. (optional)",
"required": false
},
"S3_KEY": {
"description": "The s3 key. (optional)",
"required": false
},
"S3_SECRET": {
"description": "The s3 secret. (optional)",
"required": false
}
},
"addons": [
"heroku-postgresql:hobby-dev"
]
}