Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
走ってみた
ruby script/server RAILS_ENV=production
しかし、どういうわけか、常に「開発」構成を読み取ろうとします。RAKEXXX RAILS_ENV = Production(本番構成を読み取ろうとしています)には何の問題もありません。
トラブルシューティングの方法はありますか?
同じマシンに他のRailsアプリがあり、正常に動作します。上記の問題は、redmineレールでのみ発生します。
前もって感謝します。-iwan
スクリプト/サーバーはRAILS_ENVを使用しません。
試すruby script/server -e production
ruby script/server -e production
最初のコマンドの問題は、サーバーを呼び出す前に環境を設定する必要があることでした。したがって、RAILS_ENV="production"スクリプト/サーバー
(ただし、前述のように、後で「-eproduction」を追加しても同じことが行われます)