Stripe Subscriptions¶
Info
This process works for both subscriptions and one-time payments.
Setup¶
This guide shows how to implement Stripe Checkout for payment processing and configure webhooks to handle user access.
You need to have Stripe set up.
-
Create a product in Stripe:
- Navigate to: Dashboard > Product Catalog > Add Product
- Configure product details and pricing
- Save the product
-
Copy the price ID (format:
price_*
) from the Pricing section and add it toSTRIPE_PLANS
insettings.py
-
Add the hero component to your template if not already done so:
templates/index.html<!-- ... --> {% block content %} {% include 'components/hero.html' %} <!-- ... -->
The hero component includes the checkout button:
-
Webhook Configuration:
- Endpoint:
https://<my-domain.com>/webhook/
- do not forget the trailing slash - Handles payment events and user access control
- Updates
has_access
inuser/models.py
Info
Local development requires a Stripe CLI webhook listener.
- Endpoint:
-
Testing:
- Visit
http://localhost:8000/
- Test payments using card number:
4242 4242 4242 4242
- Visit
-
Custom webhook logic can be added in
app/views.py
for:- Payment failure handling
- Usage tracking
- Event notifications
-
Users can manage their subscriptions with the
button-account.html
component (cancel, update credit card, etc.), which is shown by default in the navbar when the user is logged in.