Burawar Django zuwa production ta haɗa da gudu shi bayan ainihin WSGI/ASGI server da web server, da sauran yamnu na daidai, kare saitin, da kulawar database — girma ba kamar built-in development server ba (wanda ba ne ga production).
Production stack
Client → NGINX (web server) → GUNICORN (WSGI app server) → DJANGO
│ (runs your Python app, multiple workers)
└─ serves static/media files directly (efficient)
❌ NEVER use `python manage.py runserver` in production — it's single-threaded,
insecure, and not built for load. Use Gunicorn (WSGI) or Uvicorn (ASGI for async).
