gunicorn autoreload on source change
Finally I migrated my development env from runserver to gunicorn/nginx. It'd be convenient to replicate the autoreload feature of runserver to gunicorn, so the server automatically restarts when source changes. Otherwise I have to restart the server manually with kill -HUP . Any way to avoid the manual restart? Dmitry Ziolkovskiy While this is old question, just for consistency - since version 19.0 gunicorn has --reload option. So no third party tools needed more. One option would be to use the --max-requests to limit each spawned process to serving only one request by adding --max-requests 1