0.9.1 • Published 8 years ago

loopback-rest-connector-syncgateway v0.9.1

Weekly downloads
5
License
ISC
Repository
github
Last release
8 years ago

loopback-rest-connector-syncgateway

Note: For SyncGateway 1.2

Installation

npm i --save loopback-rest-connector-syncgateway

SyncGateway Public REST API reference: http://developer.couchbase.com/documentation/mobile/1.2/develop/references/sync-gateway/rest-api/index.html

Adding rest connector to an api:

  1. Add to component-config:
"loopback-rest-connector-syncgateway": {
  "bucket": process.env.COUCHBASE_BUCKET,
  "url": process.env.SYNC_GATEWAY_URL,
  "models": [
    {
      "<someModelName>": [ "databases", "documents-and-attachments" ]
    }
  ]
}
  1. Change the model datasource to transient in model-config.json

  2. The name of your bucket will be set with your COUCHBASE_BUCKET environment variable ex. COUCHBASE_BUCKET=somebucket

  3. Add a SYNC_GATEWAY_URL environment variable which will be the url:port ex. SYNC_GATEWAY_URL=192.168.99.100:4984 (4984 is the default port for sync gateway)

Available remote methods include: databases documents-and-attachments local-documents authentications