runway

Runway

Stripe Setup

Setting up Stripe for payments.

  1. Create a Stripe account.

  2. Go to API Keys to retrieve your keys, they should look something like this:

    plaintext

    1pk_live_...

    plaintext

    1sk_live_...
  3. Copy them into .env.local:

    .env.local

    1NEXT_PUBLIC_STRIPE_PUBLISHABLE_KEY=pk_live_...
    2NEXT_PUBLIC_STRIPE_SECRET_KEY=sk_live_...
  4. And you're done!