DjangoCon US 2022: Day 2

My notes from #djangocon 🦀 day 2.

Keeping track of architectural-ish decisions in a sustainable way

Django Migrations: Pitfalls and Solutions

Django Through the Years

Not much to say about this, other than it was a very fun history lesson! ❤️

Just enough ops for developers

My main takeaway here was the following fastapi analogy:

Your First Deployment Shouldn’t Be So Hard!

Django is great, until you get to deployment, at which point there are a billion different ways to do it. This can be a barrier to entry for new developers and for experienced developers who need to prototype rapidly…enter django-simple-deploy.

Prerequisites:

$ pip install django-simple-deploy
# Add simple deploy to INSTALLED APPS.
$ manage.py simple_deploy --platform fly_io --automate-all
# Profit!