dataservices-api/server/extension
2017-10-18 10:25:04 +02:00
..
old_versions Stub version 0.28.0 for server 2017-10-09 17:05:07 +02:00
sql OBS_GetAvailableGeometries now has number of geometries parameter 2017-10-09 17:20:57 +02:00
test Remove duplicated functions after the new ones are added 2017-10-10 16:23:15 +02:00
.gitignore Move the old version files to a folder 2016-03-08 16:47:48 +01:00
cdb_dataservices_server--0.27.0--0.28.0.sql Remove duplicated functions after the new ones are added 2017-10-10 16:23:15 +02:00
cdb_dataservices_server--0.28.0--0.27.0.sql Remove duplicated functions after the new ones are added 2017-10-10 16:23:15 +02:00
cdb_dataservices_server--0.28.0.sql Release 0.28.0 server extension artifact 2017-10-18 10:25:04 +02:00
cdb_dataservices_server.control Stub version 0.28.0 for server 2017-10-09 17:05:07 +02:00
Makefile Make more apparent what happens with make release 2017-03-08 13:22:28 +01:00
README.md Update README.md 2016-07-11 10:51:16 +02:00
upgrade_downgrade_template.erb New release task for Makefile 2016-05-31 16:37:32 +02:00

CARTO Data Services API server extension

Postgres extension for the CARTO Data Services API, server side.

Dependencies

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

The following is a non-comprehensive list of dependencies:

  • Postgres 9.3+
  • Postgis extension
  • Schema triggers extension
  • cartodb-postgresql CARTO 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 CARTO 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.