From 95551abb9d0e83be00aa5ecf2376e845d6049f40 Mon Sep 17 00:00:00 2001 From: Stephen Hess Date: Sun, 15 Oct 2017 22:02:07 -0400 Subject: [PATCH] updated for new location of interpolation service --- README.md | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 73e48d0d..4253d15e 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,7 @@ The API recognizes the following properties under the top-level `api` key in you |`indexName`|*no*|*pelias*|name of the Elasticsearch index to be used when building queries| |`relativeScores`|*no*|true|if set to true, confidence scores will be normalized, realistically at this point setting this to false is not tested or desirable |`accessLog`|*no*||name of the format to use for access logs; may be any one of the [predefined values](https://github.com/expressjs/morgan#predefined-formats) in the `morgan` package. Defaults to `"common"`; if set to `false`, or an otherwise falsy value, disables access-logging entirely.| -|`services`|*no*||service definitions for [point-in-polygon](https://github.com/pelias/pip-service) and [placholder](https://github.com/pelias/placeholder) services. If missing (which is not recommended), the point-in-polygon and placeholder services will not be called.| +|`services`|*no*||service definitions for [point-in-polygon](https://github.com/pelias/pip-service), and [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`
`defaultParameters.focus.point.lat`|no | |default coordinates for focus point Example configuration file would look something like this: @@ -73,6 +73,10 @@ Example configuration file would look something like this: }, "placeholder": { "url": "http://myplaceholderservice.com:5000" + }, + "interpolation": { + "url": "http://myinterpolationservice.com:3000", + "timeout": 2500 } } "defaultParameters": { @@ -80,12 +84,6 @@ Example configuration file would look something like this: "focus.point.lon": 21.212121 } }, - "interpolation": { - "client": { - "adapter": "http", - "host": "internal-pelias-interpolation-dev-130430937.us-east-1.elb.amazonaws.com" - } - }, "logger": { "level": "debug" }