-
-
Notifications
You must be signed in to change notification settings - Fork 73
/
app.json
52 lines (52 loc) · 1.38 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
{
"name": "RSS Box",
"description": "Get RSS feeds for services",
"repository": "https://github.com/stefansundin/rssbox",
"website": "https://github.com/stefansundin/rssbox",
"logo": "https://stefansundin.github.io/rssbox/img/icon128.png",
"success_url": "/",
"addons": [
{
"plan": "heroku-redis",
"options": {
"maxmemory": "allkeys-lru"
}
}
],
"keywords": ["rss"],
"env": {
"APP_ENV": "production",
"TWITTER_ACCESS_TOKEN": {
"description": "Your Twitter access token. Read the README.md to learn how to generate this from the consumer key and consumer secret.",
"required": false
},
"GOOGLE_API_KEY": {
"description": "Your Google API key for YouTube.",
"required": false
},
"VIMEO_ACCESS_TOKEN": {
"description": "Your Vimeo access token.",
"required": false
},
"FACEBOOK_APP_ID": {
"description": "Your Facebook app id.",
"required": false
},
"FACEBOOK_APP_SECRET": {
"description": "Your Facebook app secret.",
"required": false
},
"SOUNDCLOUD_CLIENT_ID": {
"description": "Your SoundCloud client id.",
"required": false
},
"TWITCH_CLIENT_ID": {
"description": "Your Twitch client id.",
"required": false
},
"IMGUR_CLIENT_ID": {
"description": "Your Imgur client id.",
"required": false
}
}
}