gunicorn 是否有类似 uwsgi 的 touch-reload 功能?
我正在开发一些 Web 应用程序,需要检查一些更改。早些时候,我使用了带有 touch-reload 的 uwsgi,它太棒了!但由于某种原因,我将其更改为 gunicorn(生成 0 个字节),并且在代码更改时看不到任何自动重载/自动重启。
如何实施?
gunicorn 是否有类似 uwsgi 的 touch-reload 功能?
我正在开发一些 Web 应用程序,需要检查一些更改。早些时候,我使用了带有 touch-reload 的 uwsgi,它太棒了!但由于某种原因,我将其更改为 gunicorn(生成 0 个字节),并且在代码更改时看不到任何自动重载/自动重启。
如何实施?
从 gunicorn 19.8 开始,您可以指定--reload-extra-file
观看文件,参考http://docs.gunicorn.org/en/stable/settings.html#reload-extra-files。不要忘记--reload
或--reload-extra-file
不起作用。
--touch-reload=path/to/file
对于 uwsgi ==--reload /path/to/file
对于 gunicorn