Django'yu production'a deploy etmek, onu uygun bir WSGI/ASGI sunucusu ve web sunucusu arkasında çalıştırmayı, statik dosyaları doğru şekilde sunmayı, ayarları güvenli hale getirmeyi ve veritabanını yönetmeyi içerir — bu, yerleşik geliştirme sunucusundan (ki bu production için değildir) oldukça farklıdır.
Üretim yığını
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).
