Skip to content
Snippets Groups Projects
stripe.rst 901 B
Newer Older
  • Learn to ignore specific revisions
  • We use Stripe for payment processing.
    We have test-mode keys for use in staging and live-mode keys for use in production.
    
    
    There is "payment link" state in Stripe to facilitate the payment workflow.
    This was created with ``admin/create-payment-link.sh``
    
    (once for test-mode and once for live-mode).
    
    
    The payment links can be found in PrivateStorageOps.
    They are the values of the stage3 variables ``stripe_payment_link_staging`` and ``stripe_payment_link_production``.
    
    
    There is also "webhook" state in Stripe so that PaymentServer receives notification of payment.
    This was created with ``admin/create-webhook.sh``
    (once for test-mode and once for live-mode).
    
    The test-mode webhook is ``we_1LxwKnBHXBAMm9bPDJXJNcDN``.
    The live-mode webhook is ``we_1LzioNA9OAm23rYOmAcp3V85``.
    The webhook secrets can be found with the rest of the each grid's private keys in ``stripe.webhook-secret``.