Pylons Paster 不重新加载代码

发布于 2024-10-20 09:26:09 字数 393 浏览 5 评论 0原文

可能的重复:
粘贴 (Python) Web 服务器 - 自动重新加载问题

我正在开发一个 pylons 应用程序。我使用 Pasterserve --reload --daemondevelopment.ini 启动应用程序。我在使用 ProxyPass 的应用程序前面有 apache。由于该站点处于开发阶段,因此我希望在更改源文件时重新加载代码。我认为 --reload 应该在代码更改时重新加载应用程序,但这似乎没有发生。有什么想法吗?

Possible Duplicate:
Paste (Python) Web Server - Autoreload Problem

I have a pylons app in development. I start the app with paster serve --reload --daemon development.ini. I have apache in front of the app using ProxyPass. Since this site is in dev i want the code to reload when i change the source files. I thought --reload was supposed to reload the app on code change but that doesn't seem to be happening. Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

ㄖ落Θ余辉 2024-10-27 09:26:09

我认为 --daemon 和 --reload 不兼容。 --daemon 意味着真正启动并持续运行。如果您需要使其在后台运行并断开/离开终端,则将其置于后台或在屏幕会话中运行。

paster serve --reload development.ini &

I don't think --daemon and --reload are compatible. --daemon is meant to really launch and run constantly. If you need to keep it running in the background and disconnect/leave the terminal, then background it or run it in a screen session instead.

paster serve --reload development.ini &
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文