Question
Asked By – Paolo
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?
Now we will see solution for issue: gunicorn autoreload on source change
Answer
While this is old question you need to know that ever since version 19.0 gunicorn
has had the --reload
option.
So now no third party tools are needed.
This question is answered By – Dmitry Ziolkovskiy
This answer is collected from stackoverflow and reviewed by FixPython community admins, is licensed under cc by-sa 2.5 , cc by-sa 3.0 and cc by-sa 4.0