dj-stripe / dj-stripe

dj-stripe automatically syncs your Stripe Data to your local database as pre-implemented Django Models allowing you to use the Django ORM, in your code, to work with the data making it easier and faster.
https://dj-stripe.dev
MIT License
1.63k stars 487 forks source link

How are you using dj-stripe? Share the details here! #1720

Open arnav13081994 opened 2 years ago

arnav13081994 commented 2 years ago

Hey Everyone!

I'm curious to know how dj-stripe is being used in your products/projects? I'm thinking of documenting a few common and unique ways that people are using dj-stripe in.

Thanks!

onekiloparsec commented 2 years ago

I am using dj-stripe in the backend of my project (https://api.arcsecond.io - back / https://www.arcsecond.io - front). Nothing really fancy, all monthly / yearly subscriptions (some with a metered usage).

But dj-stripe helps me manage the thing from the Django admin, and with an eye on the Stripe dashboard.

bufke commented 2 years ago

GlitchTip, an open source error monitoring platform, uses dj-stripe on it's back-end to sync subscription data. It's hosted version has paid tiers. The dj-stripe customer model is an Organization from django-organizations. Stripe customer portal is used for managing the plan and payment. Webhooks fire to sync any changes back to Django so that it can be accurately reflected on the front-end and manage usage quotas. Anyone looking to build a SaaS product is welcome to view it's open source code for inspiration.

dbartenstein commented 2 years ago

We are using dj-stripe for our SaaS car sharing platform Zemtu. Via dj-stripe we connect the Stripe accounts of our partners to Zemtu’s billing engine.

tartieret commented 2 years ago

Using dj-stripe for managing subscriptions (monthly & annual) on my side project (https://a320expert.com). It's a training platform for Airbus A320 pilots. Thanks for your great work on this !