django-planet

What's new in Django community blogs?

Django: Test for pending migrations

June 22, 2024 » Adam Johnson » [Archived Version]

This post is an adapted extract from my book Boost Your Django DX, available now. Django requires every change to model fields and meta classes to be reflected in database migrations. This applies even to things that don’t typically affect the database, such as Field.choices. When iterating on …

Read More

Django 5 by Example preface

June 20, 2024 » Paolo Melchiorre » [Archived Version]

The story of my experience in writing the preface of the book “Django By Example” by Antonio Melé.

Read More

Password Resets and Signal Handling - Building SaaS #194

June 20, 2024 » Django on Matt Layman » [Archived Version]

In this episode, we hooked up the email confirmation signal to the prompt sending code so that new users can use JourneyInbox immediately. Then we focused on handling all the functionality related to the password reset feature. This meant customizing a bunch of django-allauth forms.

Read More

Password Resets and Signal Handling - Building SaaS #194

June 20, 2024 » Django on Matt Layman » [Archived Version]

In this episode, we hooked up the email confirmation signal to the prompt sending code so that new users can use JourneyInbox immediately. Then we focused on handling all the functionality related to the password reset feature. This meant customizing a bunch of django-allauth forms.

Read More

How to assess a software project

June 19, 2024 » Better Simple » [Archived Version]

An walk-through of how to breakdown a project to understand the size and scope.

Read More

Fedidevs dev update #2

June 17, 2024 » Anže’s Blog » [Archived Version]

June update for fedidevs.com!

Read More

Django SQLite Production Config

June 14, 2024 » Anže’s Blog » [Archived Version]

Optimize your Django SQLite configuration for production.

Read More

Posette 2024

June 12, 2024 » Paolo Melchiorre » [Archived Version]

An Event for Postgres (pronounced /Pō-zet/, and formerly called Citus Con) is a free and virtual developer event. The name POSETTE stands for Postgres Open Source Ecosystem Talks Training & Education.

Read More

Weeknotes (2024 week 23)

June 7, 2024 » Matthias Kestenholz: Posts about Django » [Archived Version]

Weeknotes (2024 week 23) Switching everything from pip to uv Enough said. I’m always astonished how fast computers can be. Releases django-admin-ordering 0.18: Added a database index to the ordering field since we’re always sorting by it. django-prose-editor 0.4: Dropped the jQuery dependency making it possible to use the editor outside the Django administration interface without annoying JavaScript errors. Allowed additional heading levels and moved the block type button…

Read More

Polish, Debug Toolbar, Email Signals - Building SaaS with Python and Django #193

June 6, 2024 » Django on Matt Layman » [Archived Version]

In this episode, we first added the Django debug toolbar to aid future troubleshooting. Then, following some PR cleanup, I added django-denied as the authorization framework for the site. With those two packages integrated, I did some polishing work and began the effort to send prompts immediately following email verification.

Read More