> For the complete documentation index, see [llms.txt](https://docs.novel.dev/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.novel.dev/guides/knowledge-base/general-information/getting-stripe-keys.md).

# Getting Stripe Keys

When you run `npm run dev` for the first time, it will open up the stripe dashboard and ask you to add your stripe keys into the .env file. You can find these keys in [dashboard.stripe.com/apikeys](https://dashboard.stripe.com/apikeys).

<figure><img src="https://1973095213-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FJ8pswmvPJ01KHGsmScic%2Fuploads%2FrN0XSVpRG7VneWwNH0Gg%2FScreenshot%202024-04-16%20at%204.14.02%E2%80%AFPM.png?alt=media&amp;token=37b309bf-9211-4f06-8ac7-d309dd9abce9" alt=""><figcaption></figcaption></figure>

Copy these keys over to your `.env` file or paste it into the CLI when requested.

```sh
STRIPE_PUBLIC_TOKEN=pk_test_***
STRIPE_API_TOKEN=sk_test_***
```
