Skip to content

Latest commit

 

History

History
28 lines (16 loc) · 929 Bytes

README.md

File metadata and controls

28 lines (16 loc) · 929 Bytes

Example of doing payments with the Adyen, Stripe and Mollie platform

Example app that demonstrates how Adyen, Stripe and Mollie checkout and OAuth work an all 3 platforms

Play around with the app

https://marcsexperiment.ew.r.appspot.com

Architecture

Overview if architecture

Manual deployment on Google Appengine

# Login in to gcloud to start using the cli
gcloud auth login 
gcloud config set project <your-project-name>   

# Prepare a task-queue
gcloud tasks queues create default --max-attempts=10 --max-concurrent-dispatches=5

# Create your own app.yaml
cp app_example.yaml app.yaml # and set env-vars to the right values

# Perform the actual deployment
gcloud app deploy app.yaml index.yaml cron.yaml --quiet