-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.json
46 lines (46 loc) · 1.31 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
{
"name": "Morph Proxy",
"description": "A proxy for the Morph.io API",
"repository": "https://github.com/mermade/morph-proxy",
"logo": "http://morph-proxy.herokuapp.com/logo.png",
"keywords": ["morph", "morph.io", "node", "proxy", "API"],
"env": {
"KEY": {
"description": "Your Morph.io API key",
"value": ""
},
"OWNER": {
"description": "The owner of the Morph.io scraper, blank to allow any",
"value": "",
"required": false
},
"SCRAPER": {
"description": "The name of the Morph.io scraper, blank to allow any",
"value": "",
"required": false
},
"FORMAT": {
"description": "The format in which to return data, csv, json or atom. Leave blank for any",
"value": "json",
"required": false
},
"QUERY": {
"description": "To limit to just this query",
"value": "",
"required": false
},
"CALLBACK": {
"description": "The JSONP callback to run, if required",
"value": "",
"required": false
},
"CANNED_ONLY": {
"description": "Set to true to limit to canned queries only, no free-form SQL",
"value": "false"
},
"LANDING_PAGE": {
"description": "Set to false to disable the test page and redirect to the morph-proxy github project instead",
"value": "true"
}
}
}