Hi everyone,
Django’s deployment docs currently mention Daphne, Uvicorn, and Hypercorn for ASGI,
and Gunicorn for WSGI.
I’d like to suggest adding Granian, a Rust-based high-performance server that can run Django using both ASGI and WSGI interfaces.
Example:
# ASGI
granian --interface asgi config.asgi:application
# WSGI
granian --interface wsgi config.wsgi:application
Granian is fast, simple, and works well for running Django applications.
Even a short note like
“Other servers such as Granian can also be used.”
would help keep the docs current.
Discussion: Deploy Django with Granian · emmett-framework/granian · Discussion #187 · GitHub
Thanks!