Hi everyone
I’ve been working with Django for a while now, mostly on small to mid-sized projects, and recently I’ve started noticing how quickly things can get messy as the project scales.
At the beginning, everything feels simple a few apps, basic models, and straightforward views. But as features grow, I find myself questioning things like:
-
How to properly structure apps (when to split vs keep things together)
-
Organizing business logic (services, managers, utils what works best?)
-
Avoiding “fat models” or overly complex views
-
Keeping the project maintainable for future contributors
I’ve seen different approaches in the community, and even browsing recent discussions on the forum shows how varied practices can be, especially around ORM usage, architecture decisions, and scaling strategies .
So I wanted to ask:
What patterns or structures have worked best for you in larger Django projects?
Do you follow a specific architecture (like service layer, clean architecture, etc.)?
Any mistakes you made early on that you’d avoid now?
I’d really appreciate hearing real-world experiences rather than just theoretical advice.
Thanks in advance!