Category Archives: Uncategorized

How To Use Django as Your SaaS Framework

The Django Framework has been a popular choice for web development with Python for many years. And for good reason: it leverages Python’s ease of modularity to offer a very flexible solution for a variety of applications. Django’s core features include a model-view-controller architecture, an ORM, a templating system, caching, internationalization, and many other things you’d expect in a […]

Boilerplate for SaaS product, with Django

While building our product, we had to write a backend to handle common SaaS features such as users, subscriptions, plans, accounts, etc. Since we shut down, we decided to open source the SaaS backend for anyone to use. Fyi, you can find our other open source work here. This article explains the database schema for any […]