Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 368 Bytes

File metadata and controls

25 lines (17 loc) · 368 Bytes

Generic Stripe Webhook listener

As title.

Local development

python3 -m venv venv
source ./venv/bin/activate
pip install -r requirements.txt

Run

FLASK_APP=main flask run --debug

Visit http://127.0.0.1

Send Stripe webhook events locally

stripe listen --events customer.subscription.created --forward-to localhost:5000