-
Notifications
You must be signed in to change notification settings - Fork 46
/
app.json
36 lines (36 loc) · 1.11 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
{
"name": "graphqlhub",
"description": "GraphQLHub.com",
"repository": "https://github.com/clayallsopp/graphqlhub",
"keywords": ["graphqlhub", "graphql"],
"env": {
"GITHUB_TOKEN": {
"description": "Optional Key. Github personal token obtained from https://github.com/settings/tokens",
"value": "",
"required": false
},
"TWITTER_CONSUMER_KEY": {
"description": "Twitter consumer key obtained from https://apps.twitter.com/",
"value": ""
},
"TWITTER_CONSUMER_SECRET": {
"description": "Twitter consumer key obtained from https://apps.twitter.com/",
"value": ""
},
"GIPHY_API_KEY": {
"description": "Below key is public key. Giphy personal API key can be obtained by submitting form in http://api.giphy.com/submit",
"value": "dc6zaTOxFJmzC",
"required": true
},
"KEEN_PROJECT_ID": {
"description": "Key obtained from https://keen.io/",
"value": "",
"required": false
},
"KEEN_WRITE_KEY": {
"description": "Key obtained from https://keen.io/",
"value": "",
"required": false
}
}
}