dataservices-api/server/extension
2018-09-06 12:04:11 +02:00
..
old_versions Version 0.33.0 initial commit 2018-08-21 18:15:29 +02:00
sql Added appname parameter to the public server functions 2018-09-06 12:04:11 +02:00
test Improve logging of exceptions from sys.exc_info 2018-07-05 08:50:26 +02:00
.gitignore Move the old version files to a folder 2016-03-08 16:47:48 +01:00
carto-package.json Component change and versioning using more numbers 2018-08-17 10:54:24 +02:00
cdb_dataservices_server--0.32.0--0.33.0.sql Now the snapshot functions use the obs_genral config 2018-08-21 18:25:12 +02:00
cdb_dataservices_server--0.33.0--0.32.0.sql Now the snapshot functions use the obs_genral config 2018-08-21 18:25:12 +02:00
cdb_dataservices_server--0.33.0.sql Version 0.33.0 initial commit 2018-08-21 18:15:29 +02:00
cdb_dataservices_server.control Version 0.33.0 initial commit 2018-08-21 18:15:29 +02:00
Makefile TomTom bulk geocoding by bypassing to serial 2018-07-06 15:52:45 +02: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.