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
但不知何故,它总是试图读取“开发”配置.. RAKE XXX RAILS_ENV=production 没有问题(试图读取生产配置)。
知道如何排除故障吗?
我在同一台机器上有我的其他 Rails 应用程序,它工作正常。上述问题仅发生在 redmine rails 上。
提前致谢。-我要
脚本/服务器不使用 RAILS_ENV。
尝试ruby script/server -e production
ruby script/server -e production
第一个命令的问题是需要在调用服务器之前设置环境,所以: RAILS_ENV="production" script/server
(尽管如前所述,在后面附加“-e production”会做同样的事情)