Microservice for connecting mu.semte.ch to mollie.com
335
This service provides an integration for the Mollie payment provider with mu.semte.ch. Mollie handles payment transactions for web applications and has integrations with various providers.
Current implementation is dependent on the model for payments as built for the veeakker webshop. The current flow may be changed to further abstract this service and ensure it can be used in more contexts. For now, the integration is geared towards that specific webshop.
In your docker-compose.yml
payments:
image: madnificent/mu-mollie-payment-service
links:
- db:database
environment:
MOLLIE_API_KEY: "your mollie api key"
MOLLIE_REDIRECT_URL: "http://frontend/paymentRedirect"
MOLLIE_BASE_WEBHOOK_URL: "http://backend/paymentWebhook"
In your dispatcher.ex
match "/payments/*path" do
Proxy.forward conn, path, "http://payments/payments/"
end
match "/paymentWebhook/*path" do
Proxy.forward conn, path, "http://payments/webhook/"
end
Content type
Image
Digest
Size
45.9 MB
Last updated
about 7 years ago
docker pull madnificent/mu-mollie-payment-service