17

在我的服务器上,上周我的控制台工作正常。现在当我跑

rails console RAILS_ENV=production

我收到以下错误。

config.eager_load is set to nil. Please update your config/environments/*.rb files  accordingly:

* development - set it to false
* test - set it to false (unless you use a tool that preloads your test environment)
* production - set it to true

在我的 production.rb 中,我有以下行:

config.eager_load = true

开发环境中的 Rails 控制台确实在我的服务器上运行

4

1 回答 1

28

在生产模式下启动 Rails 控制台的命令:

rails console production
于 2013-07-10T13:00:58.770 回答