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

開発環境のレールコンソールは私のサーバーで実行されます

4

1 に答える 1

28

Rails コンソールを本番モードで起動するコマンド:

rails console production
于 2013-07-10T13:00:58.770 に答える