Как лучше начать проект django? [закрыто]

Я использую фреймворк Django. Я попробовал следующие четыре метода для запуска моего проекта

  1. python manage.py. Disadvantage: If the first request get stuck, all the other requests will get stuck.
  2. gunicorn. Disadvantage: it has conflicts with asynchronous servers. (websockets)
  3. uvicorn. Disadvantage: it doesn't process some requests randomly.
  4. gunicorn+uvicorn(gunicorn myproject.asgi:application -k uvicorn.workers.UvicornWorker -b 0.0.0.0:8000). Disadvantage: the same with python manage.py
Вернуться на верх