2b35c0b375
Added new release task in the make file to automatize the new version process: - Move current version to old_versions folder - Change .control file to the new version - Create the complete SQL file for the new version - Create empty upgrade and downgrade files To call the new task you should pass the NEW_VERSION variable. Eg: make release NEW_VERSION=0.x.0 |
||
---|---|---|
.. | ||
old_versions | ||
sql | ||
test | ||
.gitignore | ||
cdb_dataservices_server--0.9.0--0.10.0.sql | ||
cdb_dataservices_server--0.10.0--0.9.0.sql | ||
cdb_dataservices_server--0.10.0.sql | ||
cdb_dataservices_server.control | ||
Makefile | ||
README.md | ||
upgrade_downgrade_template.erb |
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.