Learn how to create credit cards with Stripe Issuing
Follow these instructions to spin-up a copy of this demo project up on your local machine for development and testing purposes.
- Ruby 2.4.5
- Postgres
- Invited to Stripe Issuing
- Stripe CLI
- Create a stripe account
- Stripe API Keys
- Download and Install dependencies
git clone [email protected]:stripe-samples/developer-office-hours.git
cd developer-office-hours/2019-12-24-issuing
bundle install
- Update API keys
EDITOR=vi rails credentials:edit
Add your Stripe API keys to the Rails credentials.
stripe:
secret_key: sk_your_secret_key
- Setup Database
rake db:create db:migrate
- Start rails server
rails server
- Browse to
http://localhost:3000