Blogs

image
Setup your Django project with Celery, Celery beat, and Redis

This article walks through integrating Celery with Redis in a Django project to handle background and scheduled tasks—ideal for operations like sending emails or periodic notifications

by Saad

image
Learn Docker with Easy Implementation in Python/Django

The post walks through creating a Dockerfile, building the image, setting up a PostgreSQL container on a network, and running the app—with a note on using Docker volumes to persist database data

by Saad

image
How to make a finite-state machine in your Django

This guide shows how to implement a finite-state machine (FSM) in a Django app using the django-fsm library, demonstrating how models can define states and transitions (like leave requests moving from draft → review → approved/rejected)

by Saad