Files
medusa-store/docs/content/troubleshooting/missing-payment-providers.md
Sebastian Rindom 2c9df0f7f7 chore: merge master
2021-12-08 09:56:59 +01:00

33 lines
762 B
Markdown

# Stripe not showing in checkout
You add payment providers to your Medusa instance by adding them as plugins in `medusa-config.js`:
```jsx
const plugins = [
...
// You can create a Stripe account via: https://stripe.com
{
resolve: `medusa-payment-stripe`,
options: {
api_key: STRIPE_API_KEY,
webhook_secret: STRIPE_WEBHOOK_SECRET,
},
},
...
];
```
And installing them through your favourite package manager:
```bash
yarn add medusa-payment-stripe
# or
npm install medusa-payment-stripe
```
Though, to be able to also show them as part of your checkout flow, you need to add them to your regions.
In Medusa Admin go to Settings -> Regions and select your newly added payment provider:
![](https://i.imgur.com/CfR9BCV.png)