Skip to content

Latest commit

History

History

2019-12-24-issuing

Folders and files

NameName
Last commit message
Last commit date

parent directory

..

Issuing Cards 2019-12-24

Learn how to create credit cards with Stripe Issuing

馃幀 Watch on YouTube

Getting Started

Follow these instructions to spin-up a copy of this demo project up on your local machine for development and testing purposes.

Prerequisites

Step by Step

  1. Download and Install dependencies
git clone git@github.com:stripe-samples/developer-office-hours.git
cd developer-office-hours/2019-12-24-issuing
bundle install
  1. Update API keys
EDITOR=vi rails credentials:edit

Add your Stripe API keys to the Rails credentials.

stripe:
  secret_key: sk_your_secret_key
  1. Setup Database
rake db:create db:migrate
  1. Start rails server
rails server
  1. Browse to http://localhost:3000