Skip to content
This repository has been archived by the owner on Apr 27, 2022. It is now read-only.

Latest commit

 

History

History
57 lines (39 loc) · 1.1 KB

File metadata and controls

57 lines (39 loc) · 1.1 KB

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 [email protected]: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