DEV Community

Cover image for Meet Django SaaS Kit.Stop Wiring Django SaaS Infrastructure from Scratch — I Built a Production-Ready Starter Kit
Abu Rayhan Alif
Abu Rayhan Alif

Posted on

Meet Django SaaS Kit.Stop Wiring Django SaaS Infrastructure from Scratch — I Built a Production-Ready Starter Kit

Just open-sourced a project I’ve been working on recently: Django SaaS Kit.

Most Django SaaS starters stop at authentication and a landing page.

I wanted something closer to what real production SaaS products need:

Multi-tenancy
RBAC
Billing
Async processing
Audit logs
CI/CD
Dockerized infrastructure
Type-safe architecture

So I built a production-ready backend starter with:

Django + DRF
PostgreSQL + Redis
Celery + Channels
Stripe billing
Docker Compose
GitHub Actions
mypy strict mode

The goal was to create a backend foundation where developers can immediately start building product features instead of spending weeks wiring infrastructure together.

Repo:
github.com/abu-rayhan-alif/django-saas-kit

Would appreciate feedback, ideas, or feature suggestions from other backend developers.

Top comments (0)