ProcfileMulti
# This is the 'actual' Procfile run by heroku (via Honcho) # Nginx is the reverse proxy# This allows static files to be served directly and to split traffic between# the WSGI and ASGI serversnginx: bin/start-nginx # WSGI server handles the standard django routes; optimised for high performancewsgi: gunicorn wsgi:application --config './config/gunicorn.conf' # ASGI server handles the asychronous routes (websockets)asgi: python ./tabbycat/run-asgi.py