2.4.0
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.
 
 
 
 
zhongjin 109821ffba
删除 'package-lock.json'
1 year ago
app first commit 1 year ago
batch first commit 1 year ago
client first commit 1 year ago
config/environments first commit 1 year ago
doc first commit 1 year ago
logs first commit 1 year ago
test first commit 1 year ago
tools first commit 1 year ago
.gitignore first commit 1 year ago
.jshintignore first commit 1 year ago
.jshintrc first commit 1 year ago
.travis.yml first commit 1 year ago
CONTRIBUTING.md first commit 1 year ago
HOWTO_RELEASE first commit 1 year ago
LICENSE first commit 1 year ago
Makefile first commit 1 year ago
NEWS.md first commit 1 year ago
README.md first commit 1 year ago
app.js first commit 1 year ago
carto-package.json first commit 1 year ago
configure first commit 1 year ago
docker-bash.sh first commit 1 year ago
docker-test.sh first commit 1 year ago
npm-shrinkwrap.json first commit 1 year ago
package.json first commit 1 year ago

README.md

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.

core requirements

  • Node >= 10.14.2 or 6.9.2
  • npm >= 6.4.1 || 3.10.9 || 3.10.10
  • Postgres 9.3+.
  • Postgis 2.2.
  • CartoDB Postgres Extension 0.19+.
  • GDAL 1.11.0 (bin utils). See installing GDAL
  • zip commandline tool.
  • Redis 3, recommended reversion 3.0.2.

Install dependencies

  • Node.js >= 10.14.2:
$ mv npm-shrinkwrap.json npm-shrinkwrap.json.backup
$ npm ci
$ mv npm-shrinkwrap.json.backup npm-shrinkwrap.json
  • Node.js 6.9.2:
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.