django-planet

What's new in Django community blogs?

Migrate PostgreSQL ID’s from serial to identity after upgrading to Django 4.1

Oct. 20, 2022 » Adam Johnson » [Archived Version]

The Django 4.1 release notes feature this short, innocent-looking note: On PostgreSQL, AutoField, BigAutoField, and SmallAutoField are now created as identity columns rather than serial columns with sequences. In this post, we’ll expand on what this means, why you might want to update existing columns from serial types …

Read More

Migrate PostgreSQL ID’s from serial to identity after upgrading to Django 4.1

Oct. 20, 2022 » Adam Johnson » [Archived Version]

The Django 4.1 release notes feature this short, innocent-looking note: On PostgreSQL, AutoField, BigAutoField, and SmallAutoField are now created as identity columns rather than serial columns with sequences. In this post, we’ll expand on what this means, why you might want to update existing columns from serial types …

Read More

How to use the Django create superuser command

Oct. 20, 2022 » Django Archives - ZeroToByte » [Archived Version]

When it comes to managing the site you’re developing, Django includes a powerful admin interface that lets you interact with ... Read more The post How to use the Django create superuser command appeared first on ZeroToByte.

Read More

How To Add Sentry - Building SaaS with Python and Django #148

Oct. 20, 2022 » Django on Matt Layman » [Archived Version]

In this episode, I switched my error management system from Rollbar to Sentry and walked through some of Sentry’s features.

Read More

How to dockerize a Django and React application

Oct. 20, 2022 » Honeybadger Developer Blog (Django Articles) » [Archived Version]

Docker offers many benefits, but it can be tricky to get started—especially when you need to deploy several components. In this article, Muhammed Ali shows how to use Docker and Docker Compose to containerize an application built with Django and React.

Read More

How To Add Sentry - Building SaaS #148

Oct. 20, 2022 » Django on Matt Layman » [Archived Version]

In this episode, I switched my error management system from Rollbar to Sentry and walked through some of Sentry’s features.

Read More

DjangoCon US 2022

Oct. 18, 2022 » Paolo Melchiorre » [Archived Version]

DjangoCon US is a six-day international conference for the community by the community about the Django web framework, held each year in North America.

Read More

How to implement a “dry run mode” for data imports in Django

Oct. 12, 2022 » Adam Johnson » [Archived Version]

In data import processes it’s often useful to have a “dry run” mode, that runs through the process but doesn’t actually save the data. This can allow you to check for validity and gather statistics, such as how many records already exist in the database. In this post …

Read More

How to implement a “dry run mode” for data imports in Django

Oct. 12, 2022 » Adam Johnson » [Archived Version]

In data import processes it’s often useful to have a “dry run” mode, that runs through the process but doesn’t actually save the data. This can allow you to check for validity and gather statistics, such as how many records already exist in the database. In this post …

Read More

Dockerizing Flask with Postgres, Gunicorn, and Nginx

Oct. 12, 2022 » TestDriven.io » [Archived Version]

This tutorial details how to configure Flask to run on Docker along with Postgres, Nginx, and Gunicorn.

Read More