在 Rails 生产环境中运行 Thor

发布于 2024-10-14 06:34:11 字数 162 浏览 2 评论 0原文

我想在生产中的 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 技术交流群。

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

发布评论

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

评论(1

疯狂的代价 2024-10-21 06:34:11

require 语句正上方的 RAILS_ENV 环境变量设置为“生产”应该可行。如果没有提前设置环境变量,我在这里使用条件赋值将环境默认为“生产”。

class CheckData < Thor
  ENV['RAILS_ENV'] ||= 'production'
  require File.expand_path('config/environment.rb')
end

如果您从命令行将其作为 Thor 任务运行,则可以在运行之前设置环境变量,从而覆盖默认分配:

export RAILS_ENV=test; thor check_data

请参阅配置 Rails 应用程序 Rails 环境设置 来自 RailsGuides< /a> 了解更多环境变量。

Setting the RAILS_ENV environment variable to 'production' right above therequirestatement should work. I used conditional assignment here to default the environment to 'production' if the environment variable is not set ahead of time.

class CheckData < Thor
  ENV['RAILS_ENV'] ||= 'production'
  require File.expand_path('config/environment.rb')
end

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:

export RAILS_ENV=test; thor check_data

See Configuring Rails Applications Rails Environment Settings from RailsGuides for more environment variables.

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