Hello all I want to know how I should deploy a django app that contains both async and sync views.
One way could be using nginx + gunicorn+ uvicorn for all views and another could be using both gunicorn and uvicorn sockets and divert the requests according to their path from nginx.
What should I use? If there's another way please guide me to deploy through it.
Note that I'm not using channels here, it's pure async function with async redis.