forked from openjournals/joss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
60 lines (60 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
52
53
54
55
56
57
58
59
60
{
"name": "neurolibre-neo",
"description": "The new NeuroLibre application, forked from JOSS",
"keywords": [
"NeuroLibre",
"Preprints"
],
"website": "http://neurolibre-neo.herokuapp.com",
"repository": "https://github.com/neurolibre/neurolibre-neo",
"success_url": "/",
"scripts": {
},
"env": {
"ORCID_KEY": {
"description": "The OAuth key for ORCID logins"
},
"ORCID_SECRET": {
"description": "The OAuth secret key for ORCID logins"
},
"ROBONEURO_SECRET": {
"description": "The key that the editorial bot uses to authenticate"
},
"GH_TOKEN": {
"description": "The GitHub token for the editorial bot GitHub user"
},
"PORTICO_HOST": {
"description": "The FTP host for Portico"
},
"PORTICO_USERNAME": {
"description": "The FTP username for Portico"
},
"PORTICO_PASSWORD": {
"description": "The FTP password for Portico"
}
},
"addons": [
"scheduler",
"heroku-postgresql:hobby-dev",
"sendgrid:starter",
"honeybadger"
],
"formation": {
"web": {
"quantity": 1,
"size": "hobby"
}
},
"buildpacks": [
{
"url": "heroku/ruby"
}
],
"environments": {
"test": {
"scripts": {
"test": "bundle exec rake test"
}
}
}
}