Payments plugin
For documentation, see https://www.vendure.io/docs/typescript-api/payments-plugin
Development
Mollie local development
For testing out changes to the Mollie plugin locally, with a real Mollie account, follow the steps below. These steps will create an order, set Mollie as payment method, and create a payment intent link to the Mollie platform.
- Get a test api key from your Mollie dashboard: https://help.mollie.com/hc/en-us/articles/115000328205-Where-can-I-find-the-API-key-
- Create the file
packages/payments-plugin/.env
with contentMOLLIE_APIKEY=your-test-apikey
cd packages/payments-plugin
yarn dev-server:mollie
- Watch the logs for
Mollie payment link
and click the link to finalize the test payment.
You can change the order flow, payment methods and more in the file e2e/mollie-dev-server
, and restart the devserver.