Files
medusa-store/packages/medusa-payment-manual
Oliver Windall Juhl afd1b67f1c chore: Clean up deps, devDeps, and peerDeps across all packages (#4276)
* chore: Use caret for all Medusa deps

* Create wild-balloons-push.md

* Address PR feedback

* force build order

* add missing dep

* add missing dev deps

* addresses last comments
2023-06-14 15:18:11 +02:00
..
2021-07-16 17:03:35 +02:00
2021-07-16 17:03:35 +02:00
2023-04-04 18:35:27 +02:00
2021-07-16 17:03:35 +02:00

Manual Payment

A minimal payment provider that allows merchants to handle payments manually.

Medusa Website | Medusa Repository

Features

  • Provides a restriction-free payment provider that can be used during checkout and while processing orders.

Prerequisites


How to Install

1. Run the following command in the directory of the Medusa backend:

npm install medusa-payment-manual

2. In medusa-config.js add the following at the end of the plugins array:

const plugins = [
  // ...
  `medusa-payment-manual`
]

Test the Plugin

1. Run the following command in the directory of the Medusa backend to run the backend:

npm run start

2. Enable the payment provider in a region in the admin. You can refer to this User Guide to learn how to do that. Alternatively, you can use the Admin APIs.

3. Place an order using a storefront or the Store APIs. You should be able to use Stripe as a payment method.