-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.json
More file actions
34 lines (34 loc) · 967 Bytes
/
app.json
File metadata and controls
34 lines (34 loc) · 967 Bytes
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
{
"name": "gc-linkedin",
"description": "linkedin visualisation on graph commons",
"repository": "https://github.com/artsince/gc-linkedin",
"keywords": ["node", "linkedin", "graph commons", "postgres"],
"addons": ["heroku-postgresql:hobby-dev"],
"env": {
"LINKEDIN_API_KEY": {
"description": "API Key for LinkedIn",
"value": "",
"required": true
},
"LINKEDIN_SECRET_KEY": {
"description": "API Secret for LinkedIn",
"value": "",
"required": true
},
"GC_API_KEY": {
"description": "Graph Commons API key",
"value": "",
"required": true
},
"GC_GRAPH_ID": {
"description": "Existing public graph id with write access",
"value": "",
"required": true
},
"APP_URL": {
"description": "Full Heroku URL for this app. Use the same value you entered above as App Name ending with `herokuapp.com`",
"value": "",
"required": true
}
}
}