gunicorn and daphne code example
Example 1: Daphne vs gunicorn in 2020
gunicorn app.wsgi:application --bind 0.0.0.0:8000 --reload && daphne -b 0.0.0.0 -p 8089 app.asgi:application
Example 2: daphne vs gunicorn
It looks like gunicorn is used for wsgi applications while dpahne is used for asgi and also wsgi applications. Here you have to decide how you want your code to look like ...