dataservices-api/server/extension
2016-01-21 08:40:25 +01:00
..
expected Added orgname to the arguments we pass to the server 2015-12-03 11:03:10 +01:00
sql Nokia geocoder config moved to the config helper 2016-01-21 08:40:25 +01:00
.gitignore Geocoder street function with quota checking 2016-01-20 20:57:24 +01:00
cdb_geocoder_server.control geocoder api server extension points to the new version 2016-01-20 16:03:30 +01:00
Makefile Makefile create the upgrade sql files for the extension too 2016-01-20 16:02:48 +01:00
README.md New README.md for the server extension 2015-11-10 11:04:48 +01:00

CartoDB geocoder API server extension

Postgres extension for the CartoDB geocoder API, server side.

Dependencies

This extension is thought to be used on top of CartoDB geocoder extension, for the internal geocoder.

The following is a non-comprehensive list of dependencies:

  • Postgres 9.3+
  • Postgis extension
  • Schema triggers extension
  • CartoDB extension

Installation into the db cluster

This requires root privileges

sudo make all install

Execute tests

PGUSER=postgres make installcheck

Build, install & test

One-liner:

sudo PGUSER=postgres make all install installcheck

Install onto a cartodb user's database

Remember that is mandatory to install it on top of cdb_geocoder

psql -U postgres cartodb_dev_user_fe3b850a-01c0-48f9-8a26-a82f09e9b53f_db

and then:

CREATE EXTENSION cdb_geocoder_server;

The extension creation in the user's db requires superuser privileges.