You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Julian Simioni 57d1c8be1e
Return an object from access_log module
8 years ago
bin Handle fatal errors in unit tests 9 years ago
controller Merge pull request #445 from vesameskanen/no-stringify-logging 9 years ago
helper Add logging helper module 8 years ago
middleware Return an object from access_log module 8 years ago
public Add link to WOF license file 9 years ago
query Set all admin boosts to 1 9 years ago
routes Convert parent WOF ids to valid Pelias ids to be used by /place 9 years ago
sanitiser handle addressit case where parsed_text.street is produced and parsed_text.name is not 9 years ago
service Filter source and layer by new fields 9 years ago
src Pass esclient config to elasticsearch module 9 years ago
test Add logging helper module 8 years ago
.gitignore Add pids directory to gitignore 9 years ago
.jshintignore remove code-climate hooks 10 years ago
.jshintrc adding jshintignore and jshintrc, pre commit hook js lint 10 years ago
.travis.yml Update travis versions 9 years ago
Dockerfile add default config 9 years ago
README.md add ciao dummy data script and README on how to use it 9 years ago
app.js Return an object from access_log module 8 years ago
circle.yml fix circle deployments 9 years ago
index.js run webserver on all available cores, resolves #6 9 years ago
package.json chore(package): update check-types to version 7.0.0 8 years ago
pelias.json.docker add default config 9 years ago

README.md

Build Status

API

![Gitter](https://badges.gitter.im/Join Chat.svg)

Documentation

See our API Documentation.

Install Dependencies

npm install

scripts

The API ships with several convenience commands (runnable via npm):

  • npm start: start the server
  • npm test: run unit tests
  • npm run ciao: run functional tests (this requires that the server be running)
  • npm run docs: generate API documentation
  • npm run coverage: generate code coverage reports

pelias-config

The API recognizes the following properties under the top-level api key in your pelias.json config file:

  • accessLog: (optional) The name of the format to use for access logs; may be any one of the predefined values in the morgan package. Defaults to "common"; if set to false, or an otherwise falsy value, disables access-logging entirely.

Contributing

Please fork and pull request against upstream master on a feature branch. Pretty please; provide unit tests and script fixtures in the test directory.

Unit tests

You can run the unit test suite using the command:

$ npm test

HTTP tests

We have another set of tests which are used to test the HTTP API layer, these tests send expected HTTP requests and then assert that the responses coming back have the correct geoJSON format and HTTP status codes.

You can run the HTTP test suite using the command:

$ npm run ciao

Note: some of the tests in this suite fail when no data is present in the index, there is a small set of test documents provided in ./test/ciao_test_data which can be inserted in order to avoid these errors.

To inject dummy data in to your local index:

$ node test/ciao_test_data.js

You can confirm the dummy data has been inserted with the command:

$ curl localhost:9200/pelias/_count?pretty
{
  "count" : 9,
  ...
}