1.0.1 • Published 9 months ago

waterline-forcedotcom v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
9 months ago

image_squidhome@2x.png

ForceAdapter

Waterline adapter for Force.com.

Installation

Install from NPM.

$ npm install sails-forcedotcom --save

Sails Configuration

Add the salesforce config to the config/adapters.js file.

Using with Sails v0.9.x

module.exports.adapters = {
  salesforce: {
    module: 'sails-forcedotcom',
    connectionParams: {
      loginUrl: 'http://test.salesforce.com'
    },
    username: '{salesforce username}',
    password: '{salesforce password}' + '{security token}'
  }
}