-
Notifications
You must be signed in to change notification settings - Fork 18
/
app.json
45 lines (45 loc) · 1.03 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
{
"name": "JupyterLab + Amazon S3",
"description": "A hosted JupyterLab environment, backed by Amazon S3 (and Heroku).",
"keywords": [
"productivity",
"datascience"
],
"website": "https://github.com/jupyterlab/jupyterlab",
"repository": "https://github.com/heroku/heroku-jupyterlab",
"logo": "http://jupyter.org/assets/main-logo.svg",
"success_url": "/",
"env": {
"PASSWORD": {
"description": "(optional) password for the environment.",
"required": false
},
"AWS_ACCESS_KEY_ID": {
"description": "Your AWS Access Key ID."
},
"AWS_SECRET_ACCESS_KEY": {
"description": "Your AWS Secret Access Key."
},
"S3_BUCKET_NAME": {
"description": "Your AWS S3 Bucket Name."
}
},
"formation": {
"web": {
"quantity": 1,
"size": "Performance-M"
}
},
"image": "heroku/python",
"buildpacks": [
{
"url": "git://github.com/mezis/heroku-buildpack-tex.git"
},
{
"url": "heroku/nodejs"
},
{
"url": "heroku/python"
}
]
}