forked from openjournals/joss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
60 lines (60 loc) · 1.26 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": "ReScienceC",
"description": "The ReScienceC application",
"keywords": [
"ReScienceC",
"Open Journals"
],
"website": "http://ReScienceC.org",
"repository": "https://github.com/openjournals/joss/tree/generalize",
"success_url": "/",
"scripts": {
},
"env": {
"ORCID_KEY": {
"description": "The OAuth key for ORCID logins"
},
"ORCID_SECRET": {
"description": "The OAuth secret key for ORCID logins"
},
"BOT_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": "basic"
}
},
"buildpacks": [
{
"url": "heroku/ruby"
}
],
"environments": {
"test": {
"scripts": {
"test": "bundle exec bin/rails spec"
}
}
}
}