forked from nytimes/library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
55 lines (55 loc) · 1.86 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
{
"name": "Library on Heroku",
"description": "One place for your organization's documents.",
"logo": "https://int.nyt.com/assets/library/icon-logo.png",
"repository": "https://github.com/nytimes/library",
"env": {
"GOOGLE_APPLICATION_CREDENTIALS": {
"description": "This should always be `parse_json`.",
"required": true,
"value": "parse_json"
},
"GOOGLE_APPLICATION_JSON": {
"description": "Your Google service account credentials in JSON format. Create one here: https://console.cloud.google.com/iam-admin/serviceaccounts",
"required": true
},
"DRIVE_TYPE": {
"description": "Set this value to `folder` if your documents are in a shared folder or `team` for a team drive.",
"required": true,
"value": "folder"
},
"DRIVE_ID": {
"description": "Your Google Drive ID.",
"required": true
},
"GOOGLE_CLIENT_ID": {
"description": "Your Google OAuth2 Client ID. Create one here: https://developers.google.com/identity/protocols/OAuth2",
"required": true
},
"GOOGLE_CLIENT_SECRET": {
"description": "Your Google OAuth2 Client Secret.",
"required": true
},
"GCP_PROJECT_ID": {
"description": "The Google project ID you're using Cloud Datastore with. Not needed if you choose not to use Cloud Datastore.",
"required": false
},
"APPROVED_DOMAINS": {
"description": "Include approved email domains.",
"required": true,
"value": "nytimes.com"
},
"SESSION_SECRET": {
"required": true,
"generator": "secret"
},
"CUSTOMIZATION_GIT_REPO": {
"required": false,
"description": "A git with the contents of your 'custom' directory for automatic deployment."
},
"NPM_TOKEN": {
"description": "Enter an NPM token if you are using private modules.",
"required": false
}
}
}