-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
25 lines (25 loc) · 1.02 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
{
"name": "Feedly Cloud API Proxy",
"description": "Retrieve RSS feeds directly from JavaScript, using the Feedly Cloud API",
"repository": "https://github.com/csm123/FeedlyAPIProxy",
"keywords": ["rss"],
"env": {
"ORIGINS": {
"description": "A comma-delimited list of domains (no spaces) that are allowed to submit cross-domain requests to the app via JavaScript. No need for commas if you're specifying just one domain. ex. http://mydomain.com/,http://someotherdomain.com/",
"required": false
},
"ALLOW_ALL_ORIGINS": {
"description": "Set to true to allow any domain to submit cross-domain requests to this app. Not recommended.",
"required": false
},
"API_KEY": {
"description": "Set a key that will be required to make a request to this app. This is not passed to Feedly.",
"required": false
},
"DEFAULT_COUNT": {
"description": "If `count` is not specified for a request, the count that is used.",
"required": false,
"value": "10"
}
}
}