June 21, 2026
Deploy now, argue forever
Djevops: Self-Host Django Easily
A speedy new way to put Django sites online has commenters fighting old-school vs Docker
TLDR: djevops is a new tool that helps people put Django websites online quickly on a basic server, skipping Docker and handling things like backups and security certificates. Commenters immediately split into camps: some loved the simplicity, some defended Docker, and one person sparked nostalgia by calling for a return to the old-school web.
A new tool called djevops is pitching a very tempting fantasy for small app makers: take your Django website, point it at a cheap Linux server, and push it live in seconds without wrestling with Docker, the popular packaging system many developers use to bundle apps. It promises the basics people actually care about — automatic security certificates, backups, email alerts when the site breaks, and support for extras like PostgreSQL, Redis, and background jobs — all from a simple command-line setup.
But the real fireworks are in the comments, where this turned into a full-on deployment culture war. One camp loved the simplicity and called it a cool, practical shortcut for future projects. Another instantly waved the Docker flag, with one commenter boasting they already run about 10 services on a $5-a-month server, basically saying, “Cute idea, but my setup already does this.” And then came the true chaos agent: the nostalgic hot take asking why everyone doesn’t just go back to old-school web hosting like Apache mod_php and mod_python, because, apparently, the ancient ways still work and are hard to beat for lots of tiny sites.
That’s what makes this fun: djevops wasn’t just launched as a tool, it accidentally reopened tech’s favorite argument — simple and fast vs isolated and modern vs ‘why did we ever leave the old ways?’ The vibe is part curiosity, part skepticism, and part dads-at-a-barbecue arguing over power tools.
Key Points
- •djevops is a command-line tool for deploying Django applications to Linux VPS servers and managing components such as databases and Redis.
- •The tool requires SSH root access to an Ubuntu or Debian VPS, is installed with pip, and uses `djevops init` and `djevops deploy` for configuration and deployment.
- •djevops supports automatic SSL certificate generation and renewal based on domains listed in Django `ALLOWED_HOSTS`.
- •The tool provides automatic database backup support, using Litestream for SQLite and configurable backup intervals for PostgreSQL.
- •djevops supports PostgreSQL setup and background task workers for Django apps that use Celery, with Redis referenced as a managed component.