You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
dataservices-api/client
Jesús Arroyo Torrens f12e25117e
Fix ALTER TYPE for multi-command string
4 years ago
..
old_versions Create client release 0.30.1 4 years ago
renderer Remove DO Python code and SQL tests 4 years ago
sql Remove DO Python code and SQL tests 4 years ago
test Remove DO Python code and SQL tests 4 years ago
.gitignore Client: Simplify PG12/Postgis 3 interaction 5 years ago
Makefile Bump version numbers 4 years ago
README.md Client: Simplify PG12/Postgis 3 interaction 5 years ago
carto-package.json Update dependencies 5 years ago
cdb_dataservices_client--0.30.0--0.31.0.sql Fix server script 4 years ago
cdb_dataservices_client--0.31.0--0.30.0.sql Fix ALTER TYPE for multi-command string 4 years ago
cdb_dataservices_client--0.31.0.sql Bump version numbers 4 years ago
cdb_dataservices_client.control.in Client: Simplify PG12/Postgis 3 interaction 5 years ago
upgrade_downgrade_template.erb Add cartodb to the search path 8 years ago

README.md

CARTO Data Services API client extension

Postgres extension for the CARTO Data Services 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-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

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

and then:

CREATE EXTENSION cdb_dataservices_client CASCADE;

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

User database configuration

After installing the client extension in a database, you will need to set up your configuration to be able to connect with the server.

-- Point to the dataservices server DB (you can use a specific database for the server or your same user's):
SELECT CDB_Conf_SetConf('geocoder_server_config', '{ "connection_str": "host=localhost port=5432 dbname=<SERVER_DB_NAME> user=postgres"}');

SELECT CDB_Conf_SetConf('user_config', '{"is_organization": false, "entity_name": "<YOUR_USERNAME>"}');