Django 的霰弹枪?
我喜欢 shotgun 服务器。但是有没有类似的包可用于 Django 开发?
每次代码更改时,shotgun 都会重新加载服务器,从而使开发过程变得更容易。我正在寻找类似的 Django 开发程序。
谢谢 !
I like shotgun server. but is there any similar package available for Django development ?
shotgun reloads the server every time the code is changed , thus making the development process easier .. I am looking for a similar kind of program for Django development .
Thanks !
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用提供的 Django Dev 服务器。或者你可以使用类似的东西:
http://jeffbaier .com/articles/installing-django-on-an-ubuntu-linux-server/
这将在每次请求时重新加载服务器,但请确保在生产之前将其关闭!
编辑:
您真正需要的部分就是这样:MaxRequestsPerChild 1 位于底部附近。您可以阅读这篇文章来了解他们正在做什么。
You could use the Django Dev server that is supplied. OR you could use something similar to this:
http://jeffbaier.com/articles/installing-django-on-an-ubuntu-linux-server/
This will reload the server at each request, but make sure to turn it off before production!
Edit:
The part you really need is just this: MaxRequestsPerChild 1 located near the bottom. You could read the article just to understand what they are working with though.