在 Rails 生产环境中运行 Thor
我想在生产中的 Rails 3 上运行一些雷神任务, 但我不知道如何设置它。 以下代码不起作用
class CheckData < Thor
require File.expand_path('config/environment.rb')
end
I want to run some thor task on rails 3 in production,
but I do not know how to set it up.
The following code did not work
class CheckData < Thor
require File.expand_path('config/environment.rb')
end
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将
require
语句正上方的 RAILS_ENV 环境变量设置为“生产”应该可行。如果没有提前设置环境变量,我在这里使用条件赋值将环境默认为“生产”。如果您从命令行将其作为 Thor 任务运行,则可以在运行之前设置环境变量,从而覆盖默认分配:
请参阅配置 Rails 应用程序 Rails 环境设置 来自 RailsGuides< /a> 了解更多环境变量。
Setting the RAILS_ENV environment variable to 'production' right above the
require
statement should work. I used conditional assignment here to default the environment to 'production' if the environment variable is not set ahead of time.If you are running it as a Thor task from the command-line you can then set the environment variable before running and thus override the default assignment:
See Configuring Rails Applications Rails Environment Settings from RailsGuides for more environment variables.