# Notes on Setting Up Stripe for Use with Jumpstart Pro

DevFeed: [Notes on Setting Up Stripe for Use with Jumpstart Pro](<https://devfeed.tech/articles/notes-on-setting-up-stripe-for-use-with-jumpstart-pro-28349.md>)

Original publisher: [Read original article](<http://fuzzyblog.io/blog/stripe/2020/01/31/notes-on-setting-up-stripe-for-use-with-jumpstart-pro.html>)

Author: Fuzzygroup

Published: 2020-01-31T00:00:00Z

Content type: tutorial

Language: en

Sources: [Scott Johnson](<https://devfeed.tech/sources/scott-johnson.md>)

Topics: [stripe](<https://devfeed.tech/topics/stripe.md>), [Rails](<https://devfeed.tech/topics/rails.md>), [Software as a service](<https://devfeed.tech/topics/saas.md>), [Template](<https://devfeed.tech/topics/template.md>), [Command-line interface](<https://devfeed.tech/topics/cli.md>), [Homebrew](<https://devfeed.tech/topics/homebrew.md>), [API](<https://devfeed.tech/topics/api.md>), [browser](<https://devfeed.tech/topics/browser.md>)

Tags: [account](<https://devfeed.tech/tags/account.md>), [api](<https://devfeed.tech/tags/api.md>), [cli](<https://devfeed.tech/tags/cli.md>), [credentials](<https://devfeed.tech/tags/credentials.md>), [homebrew](<https://devfeed.tech/tags/homebrew.md>), [implementation](<https://devfeed.tech/tags/implementation.md>), [jumpstart](<https://devfeed.tech/tags/jumpstart.md>), [logs](<https://devfeed.tech/tags/logs.md>), [product](<https://devfeed.tech/tags/product.md>), [rails](<https://devfeed.tech/tags/rails.md>), [saas](<https://devfeed.tech/tags/saas.md>), [stripe](<https://devfeed.tech/tags/stripe.md>), [test](<https://devfeed.tech/tags/test.md>)

## AI overview

A practical guide to setting up Stripe billing for a multi-license SaaS product built with Jumpstart Pro and Rails. It covers configuring products and subscription plans, adding credentials, installing and authenticating the Stripe CLI, configuring webhook signing, and verifying a test transaction.

## Source excerpt

I just finished, with a colleague's assistance, the SAAS implementation of a multi license product using Stripe as the billing engine and Jumpstart Pro as the Rails application template. Listed below, in a mildly random order, are the steps we had to take: Create a Stripe account. Add your bank account credentials. Define your product within Stripe. Define your subscription plans within the product inside Stripe. Pricing plans nest within one product which is not intuitive. Add the Stripe credentials to the Rails environment. Read This Post!. In the /admin/plans urls on your Jumpstart based application, define the plans and prices that you want to offer (remember to enter prices in pennies) and make sure that the plan identifier that Stripe generated is entered into the stripe field inside the plan creation tool. Install the Stripe listen tool using Homebrew: brew install stripe/stripe-cli/stripe Authenticate your Stripe listen with your stripe API key like this: stripe login -api-key pk_BLAH_FOO_BAR_BAZ_DOH_HOMER Start the Stripe Listen tool (it defaults to port 3000; if you are running Rails on another port then you need to figure that bit out yourself). Confirm in a browser that this is the right api return value (and, yes, this supports Choosy). When you see the webhook signing secret show up then use the rails credentials:edit to add that to your environment. Create a test transaction using the Stripe test card numbers and you should see in the logs that the transaction went all the way through with entries something like the ones below. stripe listen Ready! Your webhook signing secret is whsec_TRyDDDDDDDDDDDwnW3Y3u6TY7hDc (^C to quit) 2020-01-31 21:07:18 -> setup_intent.succeeded [evt_1G7BOCARA9hqQw13nA4] 2020-01-31 21:07:24 -> customer.created [evt_1G7BODARA9hqQw13uTOc] 2020-01-31 21:07:28 -> payment_method.attached [evt_1G7BOEARA33c6vCsbI] 2020-01-31 21:07:31 -> customer.updated [evt_1G7BOEARA3b1n6m7mC] 2020-01-31 21:09:25 -> setup_intent.created [evt_1G7BQG