Contributions

Tutorial
We'll add Stripe subscriptions to Django extremely quickly (in 7 mins), using minimal code. We'll also add local webhook testing simply, and use Stripe's nice inbuilt checkout page in our app.
Article
All the guides I've seen about adding Google Sign to Django make it overly complicated (e.g., Django-allauth or Django-social-auth).

This guide shows the simplest way to add Google sign-in to a Django app โœ๏ธ This means
โ†’ no big packages like Django-allauth or Django-social-auth.
โ†’ as little code to add as possible.
Tutorial
I wrote this tutorial to show the simplest way to add async, real-time events with Django. This includes:

- no heavy dependencies. No Redis.
- reading from the Django database in real-time ๐ŸŽ๏ธ. We use the new async Django features
using the lightest available setup (one pip command to install Daphne).