Go to file
Daniel García Aubert 986e761567 Remove unused files
2019-12-27 13:17:19 +01:00
config/environments Default to stdout logging on dev environment 2019-10-17 13:02:13 +02:00
docker/scripts Stop using makefile and bash scripts to prepare redis and postgres 2019-12-27 13:09:05 +01:00
docs Professional -> Individual 2019-09-02 17:30:46 +02:00
lib Eslint errors 2019-12-26 18:28:01 +01:00
test Remove unused files 2019-12-27 13:17:19 +01:00
.eslintrc.js Replace jshint by eslint as default linter tool 2019-12-23 18:18:18 +01:00
.gitignore Merge branch 'master' of github.com:CartoDB/CartoDB-SQL-API 2019-10-08 10:05:44 +02:00
.travis.yml Stop using makefile and bash scripts to prepare redis and postgres 2019-12-27 13:09:05 +01:00
app.js Run eslint --fix 2019-12-23 18:19:08 +01:00
carto-package.json Drop support for Node.js 6, npm 3, Postgres 9.5, PostGIS 2.2, and Redis 3 2019-02-21 18:55:27 +01:00
CONTRIBUTING.md Fixed wrong contributing url 2017-01-25 10:49:29 +01:00
HOWTO_RELEASE Typo 2019-02-22 12:56:51 +01:00
LICENSE Adds notes about contributing 2015-09-08 16:40:33 +02:00
NEWS.md Stubs next version 2019-11-13 13:16:32 +01:00
package-lock.json Replace jshint by eslint as default linter tool 2019-12-23 18:18:18 +01:00
package.json Stop using makefile and bash scripts to prepare redis and postgres 2019-12-27 13:09:05 +01:00
README.md Imporve doc 2019-02-22 12:11:30 +01:00

SQL API for carto.com

Build Status

Provides a node.js based API for running SQL queries against CartoDB.

  • Users are authenticated over OAuth or via an API KEY.
  • Authenticated requests to this API should always be made over SSL.

Requirements

  • Node 10.x
  • npm 6.x
  • PostgreSQL >= 10.0
  • PostGIS >= 2.4
  • CARTO Postgres Extension >= 0.24.1
  • Redis >= 4
  • GDAL 1.11.0 (bin utils). See installing GDAL
  • zip commandline tool.
  • C++11 (to build internal dependencies if needed)

Install dependencies

$ npm install

Usage

Create and edit config/environments/.js from .js.example files. You may find the ./configure script useful to make an edited copy for you, see ./configure --help for a list of supported switches.

Make sure redis is running and knows about active cartodb user.

Make sure your PostgreSQL server is running, is accessible on the host and port specified in the file, has a 'publicuser' role (or whatever you set db_pubuser configuration directive to) and trusts user authentication from localhost connections.

node app.js <environment>

Supported values are development, test, production

See doc/API.md for API documentation. For examples of use, see under test/.

Tests

Run with:

$ npm test

If any issue arise see test/README.md

Note that the environment should be set to ensure the default PostgreSQL user is superuser (PGUSER=postgres make check).

Contributing

See CONTRIBUTING.md.