CruiseControl.rb 总是在生产模式下运行我的项目?
我很好奇为什么当我使用 CruiseControl.rb 构建项目时,它会在生产模式下运行?即使我的应用程序不应该处于生产模式。我什至尝试在我的应用程序的环境中指定: ENV['RAILS_ENV'] ||= 'development'
I'm curious as to why when I build my project using CruiseControl.rb, it runs it in production mode? Even though my application should not be in production mode. I even tried to specify: ENV['RAILS_ENV'] ||= 'development'
in my app's environment.rb
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
仅当环境尚未设置时,environment.rb 行才会将您的环境设置为开发。
有关他们建议如何配置构建环境的信息,请参阅:
他们关于该主题的手动输入
That environment.rb line will only set your environment to development if the environment is not already set.
For information about how they suggest configuring your build environments, see:
Their Manual Entry on the subject