Pylons Paster 不重新加载代码
我正在开发一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为 --daemon 和 --reload 不兼容。 --daemon 意味着真正启动并持续运行。如果您需要使其在后台运行并断开/离开终端,则将其置于后台或在屏幕会话中运行。
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.