-
Notifications
You must be signed in to change notification settings - Fork 9
/
app.json
53 lines (53 loc) · 1.55 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
{
"name": "AP Harvester",
"description": "An open and collaborative data collection tool developed by the Associated Press",
"keywords": [
"collaborative",
"data",
"collection"
],
"website": "https://gitlab.inside.ap.org/newsapps/harvester",
"repository": "https://gitlab.inside.ap.org/newsapps/harvester",
"logo": "https://interactives.ap.org/assets/images/ap/AP_LOGO_311x360.png",
"success_url": "/",
"env": {
"HARVESTER_LOGO": {
"description": "URL to logo to display at the top of the page (default is the AP logo)",
"required": false
},
"HARVESTER_CONFIG_RESOURCE_ID": {
"description": "Google Sheet that will configure custom URLs for Harvester",
"required": false
},
"GOOGLE_APPLICATION_CREDENTIALS": {
"description": "File containing Google service account credentials",
"value": ".auth.json"
},
"GOOGLE_SERVICE_ACCOUNT_CREDENTIALS": {
"description": "JSON Google service account credentials"
},
"GOOGLE_OAUTH_CLIENT_ID": {
"description": "Google OAuth client ID (leave empty to disable auth)",
"required": false
},
"GOOGLE_OAUTH_CLIENT_SECRET": {
"description": "Google OAuth client secret (leave empty to disable auth)",
"required": false
},
"JWT_SECRET": {
"description": "A secret key for verifying the integrity of signed cookies.",
"generator": "secret"
}
},
"formation": {
"web": {
"quantity": 1,
"size": "free"
}
},
"buildpacks": [
{
"url": "heroku/nodejs"
}
]
}