BLACKLIST_AFTER_ROTATION needs the token_blacklist app in INSTALLED_APPS and a migration. The errors you get, the silent failure if you skip it, and the fix.
Install the Appliku skill for Claude Code and let your AI assistant deploy apps, read logs, and manage domains and datastores from plain-English prompts, on servers you own.
Install the Appliku CLI, log in, and deploy from your terminal. Scriptable and non-interactive with APPLIKU_TOKEN, so CI pipelines and AI agents can deploy to servers you own.
Deploy Django to a VPS you own, two ways: the full manual setup (Gunicorn, Nginx, systemd, Postgres, SSL), and the managed way with Appliku. Step by step.
How to deploy a Django project on AWS EC2 instance. Article show how to connect GIT repository, add database and deploy your app
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.
Run python manage.py createsuperuser to set up a Django admin instantly. Covers flags, Docker, non-interactive mode, and a custom automation command.
Install Jekyll, create a static site, write posts in Markdown, then deploy the built site to a server you own instead of GitHub Pages, with HTTPS.
Set up the Django admin from scratch: enable the app in settings, wire the URLs, create a superuser, define models, and register them for editing.
Add filters to Django admin using list_filter and create custom filters with SimpleListFilter. Practical examples for date ranges, boolean fields, and multi-value filtering.
Add search to the Django admin with search_fields, then go further with custom search tools for related models and the fields built-in search misses.
Start a Sphinx documentation site, turn on Markdown with MyST, add the Book theme, then deploy it as a static site on a server you own, with HTTPS.
Add a custom user model to a Django project the safe way: a new app, the AUTH_USER_MODEL setting, admin registration, and a superuser made for you.
The best free Django hosting options in 2026 — Hetzner free credits, AWS free tier, Fly.io, PythonAnywhere, and how Appliku + Hetzner gives you 5 months free.
Step-by-step Django Celery tutorial: set up Celery with Redis, schedule tasks with Celery Beat, monitor with Flower dashboard, and deploy to production in 5 minutes.
Production-ready Django + Docker + PostgreSQL setup: multi-stage builds, gunicorn, health checks, dev/prod docker-compose split, and environment variable handling. Deploy to any server in minutes.
Database is the main auxiliary service needed for running your Django Project. How to create AWS RDS Postgres Database and connect to Django.
How to send email from Django Project via AWS SES, set up tracking of bounces and complaints, and filter bad email addresses to protect email deliverability.