dataservices-api/server/extension
2016-05-10 16:46:38 +02:00
..
old_versions On 4xx we have to return an empty response instead of an exception 2016-05-10 16:46:38 +02:00
sql On 4xx we have to return an empty response instead of an exception 2016-05-10 16:46:38 +02:00
test Green/Blue deploy system for the observatory functions 2016-05-03 13:49:14 +02:00
.gitignore Move the old version files to a folder 2016-03-08 16:47:48 +01:00
cdb_dataservices_server--0.7.3--0.7.4.sql On 4xx we have to return an empty response instead of an exception 2016-05-10 16:46:38 +02:00
cdb_dataservices_server--0.7.4--0.7.3.sql On 4xx we have to return an empty response instead of an exception 2016-05-10 16:46:38 +02:00
cdb_dataservices_server.control On 4xx we have to return an empty response instead of an exception 2016-05-10 16:46:38 +02:00
Makefile On 4xx we have to return an empty response instead of an exception 2016-05-10 16:46:38 +02:00
README.md Geocoder server renamed to dataservices server extension 2016-02-05 17:57:22 +01:00

CartoDB dataservices API server extension

Postgres extension for the CartoDB dataservices 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_dataservices_server;

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