cartodb as dependency and use its config table #37

in the client.
This commit is contained in:
Rafa de la Torre
2015-11-17 12:01:18 +01:00
parent 7cba8fd679
commit b977277052
7 changed files with 14 additions and 52 deletions

View File

@@ -1,12 +1,15 @@
-- Install dependencies
CREATE EXTENSION postgis;
CREATE EXTENSION schema_triggers;
CREATE EXTENSION plpythonu;
CREATE EXTENSION cartodb;
CREATE EXTENSION plproxy;
-- Install the extension
CREATE EXTENSION cdb_geocoder_client;
-- Mock the server connection to point to this very test db
SELECT cdb_geocoder_client._config_set('db_server_config', '{"connection_str": "dbname=contrib_regression host=127.0.0.1 user=postgres"}');
SELECT cartodb.cdb_conf_setconf('geocoder_server_config', '{"connection_str": "dbname=contrib_regression host=127.0.0.1 user=postgres"}');
-- Mock the server schema
CREATE SCHEMA cdb_geocoder_server;