Browse Source

Update example pelias.json

pull/1115/head
Julian Simioni 7 years ago
parent
commit
66e21b4d23
No known key found for this signature in database
GPG Key ID: B9EEB0C6EE0910A1
  1. 33
      README.md

33
README.md

@ -46,37 +46,30 @@ The API recognizes the following properties under the top-level `api` key in you
|`services`|*no*||service definitions for [point-in-polygon](https://github.com/pelias/pip-service), [libpostal](https://github.com/whosonfirst/go-whosonfirst-libpostal), [placeholder](https://github.com/pelias/placeholder), and [interpolation](https://github.com/pelias/interpolation) services. If missing (which is not recommended), the services will not be called.| |`services`|*no*||service definitions for [point-in-polygon](https://github.com/pelias/pip-service), [libpostal](https://github.com/whosonfirst/go-whosonfirst-libpostal), [placeholder](https://github.com/pelias/placeholder), and [interpolation](https://github.com/pelias/interpolation) services. If missing (which is not recommended), the services will not be called.|
|`defaultParameters.focus.point.lon` <br> `defaultParameters.focus.point.lat`|no | |default coordinates for focus point |`defaultParameters.focus.point.lon` <br> `defaultParameters.focus.point.lat`|no | |default coordinates for focus point
Example configuration file would look something like this: A good starting configuration file includes this section (fill in the service and Elasticsearch hosts as needed):
``` ```
{ {
"esclient": { "esclient": {
"keepAlive": true, "hosts": [{
"requestTimeout": "1200000", "host": "elasticsearch"
"hosts": [ }]
{
"protocol": "http",
"host": "somesemachine.elb.amazonaws.com",
"port": 9200
}
]
}, },
"api": { "api": {
"host": "localhost:3100/v1/",
"indexName": "foobar",
"relativeScores": true,
"services": { "services": {
"pip": {
"url": "http://mypipservice.com:3000"
},
"placeholder": { "placeholder": {
"url": "http://myplaceholderservice.com:5000" "url": "http://placeholder:4100"
},
"libpostal": {
"url": "http://libpostal:8080"
},
"pip": {
"url": "http://pip-service:4200"
}, },
"interpolation": { "interpolation": {
"url": "http://myinterpolationservice.com:3000", "url": "http://interpolation:4300"
"timeout": 2500
}
} }
},
"defaultParameters": { "defaultParameters": {
"focus.point.lat": 12.121212, "focus.point.lat": 12.121212,
"focus.point.lon": 21.212121 "focus.point.lon": 21.212121

Loading…
Cancel
Save