dataservices-api/client
2015-11-24 10:06:55 +01:00
..
expected Revert "Change ipaddress geocode to match the server signature" 2015-11-24 10:06:55 +01:00
sql Revert "Change ipaddress geocode to match the server signature" 2015-11-24 10:06:55 +01:00
templates Add properties for user and geocoder config keys instead of hardcode it in the template 2015-11-23 13:09:03 +01:00
.gitignore My try at creating the client extension (to be tested) 2015-11-10 15:28:12 +01:00
cdb_geocoder_client.control cartodb as dependency and use its config table #37 2015-11-17 12:01:18 +01:00
Makefile Adapt to yaml (WIP) 2015-11-18 18:38:06 +01:00
README.md Added readme for the client extension 2015-11-23 10:12:06 +01:00

CartoDB geocoder API client extension

Postgres extension for the CartoDB geocoder API, client side.

Dependencies

This extension is thought to be used on top of CartoDB geocoder extension, for the multiples available geocoders (internal, nokia, etc).

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_client;

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