-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
app.json
51 lines (51 loc) · 1.29 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
48
49
50
51
{
"name": "jellyposter",
"stack": "heroku-18",
"logo": "https://github.com/jellypbc.png",
"description": "A notebook platform",
"repository": "https://github.com/jellypbc/poster",
"scripts": {
"postdeploy": "bundle exec rails db:migrate && bundle exec rails db:seed"
},
"env": {
"HOSTNAME": {
"description": "The domain that your instance will run on (this can be appname.herokuapp.com or a custom domain)",
"required": false
},
"GCS_BUCKET": {
"description": "Your google cloud storage for assets",
"required": false
},
"GOOGLE_CLOUD_PROJECT": {
"description": "Your google cloud project name",
"required": false
},
"GOOGLE_CLOUD_KEYFILE": {
"description": "Full JSON object of GCS credentials or path to keyfile",
"required": false
},
"GROBID_HOST": {
"description": "The host of your grobid instance",
"required": false
},
"FIGURE_HOST": {
"description": "The host of your figure processing instance",
"required": false
}
},
"addons": [
"heroku-postgresql",
"heroku-redis",
{
"plan": "bonsai:sandbox-6"
}
],
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-apt"
},
{
"url": "heroku/ruby"
}
]
}