Migrating from uWSGI to Gunicorn + Uvicorn (ASGI) on a VPS

Migrating from uWSGI to Gunicorn + Uvicorn (ASGI) on a VPS

2026-08-11 Categories: Django Deployment

A step-by-step guide on switching a Django deployment on a VPS from the WSGI server uWSGI to an ASGI stack based on Gunicorn and Uvicorn workers, including how to run both stacks side by side for two different projects.

Django ORM Optimization

Django ORM Optimization

2026-07-08 Categories: Django Optimization

A guide on how to optimize your Django ORM queries for better performance, including techniques like select_related, prefetch_related, and more.

Using python-decouple in Django projects

Using python-decouple in Django projects

2026-06-22 Categories: Django Python

A blog post about using python-decouple in Django projects, comparing it with other solutions and providing usage examples.

How to handle 404 and 500 errors in Django

How to handle 404 and 500 errors in Django

2026-05-18 Categories: Django

A guide on how to add custom handlers for 404 and 500 errors in Django to improve user experience.