Skip to content

Latest commit

 

History

History
47 lines (37 loc) · 1.76 KB

README.md

File metadata and controls

47 lines (37 loc) · 1.76 KB

proxy-generics-stripe

Waffle.io - Columns and their card count

NPM version Build status Dependency Status Code Climate

Proxy Generic Payment Processor for Stripe.com.

Looking for Proxy Engine? Looking for Proxy Generics?

Install

$ npm install --save proxy-generics-stripe

Configure

// config/proxyGenerics.js
module.exports = {
  // make the key stripe, alternatively make the key payment_processor to be the default payment_processor  
  stripe: {
    adapter: require('proxy-generic-stripe'),
    options: {
        public: '<your public key>',
        secret: '<your private key>'
    },
    api: require('proxy-generic-stripe/api'),
    icon: '' // url to an icon you want to use for this generic
  }
}