2011-06-13 11:23:02 +08:00
|
|
|
SQL API for cartodb.com
|
|
|
|
========================
|
|
|
|
|
2011-10-08 00:19:02 +08:00
|
|
|
Provides a nodejs based API for running SQL queries against CartoDB.
|
2011-06-13 11:23:02 +08:00
|
|
|
|
2012-03-14 02:32:01 +08:00
|
|
|
* Users are authenticated over OAuth. Also provides ability to make public
|
|
|
|
"SELECT" only calls.
|
2011-10-08 00:19:02 +08:00
|
|
|
* OAuth requests to this API should always be made over SSL.
|
2011-06-13 11:23:02 +08:00
|
|
|
|
2011-10-08 00:19:02 +08:00
|
|
|
|
2011-06-30 19:13:13 +08:00
|
|
|
core requirements
|
|
|
|
-------------
|
|
|
|
* postgres
|
|
|
|
* redis
|
2012-03-16 20:50:07 +08:00
|
|
|
* node >v0.4.8 && < 0.7.0>
|
2011-06-30 19:13:13 +08:00
|
|
|
* npm
|
|
|
|
|
2012-03-14 02:32:01 +08:00
|
|
|
usage
|
|
|
|
-----
|
|
|
|
|
2012-03-16 17:31:03 +08:00
|
|
|
Edit config/environments/<environment>.js
|
2012-03-14 02:32:01 +08:00
|
|
|
Make sure redis is running and knows about active cartodb user.
|
|
|
|
|
|
|
|
``` bash
|
2012-03-16 17:31:03 +08:00
|
|
|
node [cluster.js|app.js] <environment>
|
2012-03-14 02:32:01 +08:00
|
|
|
```
|
|
|
|
|
2012-03-16 17:31:03 +08:00
|
|
|
Supported <environment> values are developement, test, production
|
|
|
|
|
2012-03-14 02:32:01 +08:00
|
|
|
for examples of use, see /tests
|
|
|
|
|
2011-06-30 20:06:23 +08:00
|
|
|
|
2012-03-16 18:46:34 +08:00
|
|
|
Install dependencies
|
2011-10-08 00:19:02 +08:00
|
|
|
---------------------
|
2011-06-30 19:13:13 +08:00
|
|
|
|
2011-10-08 00:19:02 +08:00
|
|
|
```bash
|
|
|
|
npm install
|
|
|
|
```
|
2011-06-30 19:13:13 +08:00
|
|
|
|
2011-07-01 00:10:10 +08:00
|
|
|
|
2011-10-08 00:19:02 +08:00
|
|
|
tests
|
|
|
|
------
|
2012-03-16 18:47:10 +08:00
|
|
|
see test/README.md
|