Learn how to use the Django createsuperuser command to create an admin superuser. Covers basic usage, custom username/email flags, and non-interactive mode.
Complete guide to Celery Flower monitoring tool: run it with Docker Compose, add basic auth, configure nginx reverse proxy, integrate Prometheus metrics, and deploy to production.
Complete guide to JWT authentication in Django using djangorestframework-simplejwt. Covers token refresh, blacklisting, custom claims, logout, and all SIMPLE_JWT settings.
Complete Django Celery tutorial: install Celery with Redis, create background tasks, configure Celery Beat for scheduling, add retry logic, and monitor with Flower.
Master Celery chord and group for parallel Django tasks. Covers chain vs chord, error callbacks with link_error, chord_unlock behavior, and working code examples.
This tutorial explains what RESTful API is and why it's used, followed by a step-by-step guide on how to build a REST API using Django. It covers creating a new Django project, defining models for a TODO app, using REST framework serializers and CRUD views, setting up a Django REST framework router and URLs, and testing the API.
Series of bite-sized topic-based tutorials about unleashing the power of Django Admin
Add Swagger UI and OpenAPI docs to your Django REST Framework API using drf-spectacular. Step-by-step setup with Redoc integration, URL config, and working code examples.
Learn how to deploy a Django app on Hetzner Cloud VPS using Appliku. ARM server setup, Postgres, automatic HTTPS, and git-based deployments — from zero to live in under 15 minutes.
Learn how to set up a Django Docker project with Postgres from scratch. Covers multi-stage Dockerfile builds, health checks, named volumes, and docker-compose.override.yml for dev vs production.