我需要将DreamHost上的rails 3 app设置为开发模式。
在rails 2.3中,我曾经在environment.rb中设置它。 我如何以及在哪里为rails 3做到这一点?
感谢。
萨姆
答案 0 :(得分:4)
像Ikahtz说的那样,但是:
# in config/environment.rb
ENV['RAILS_ENV'] = 'development'
答案 1 :(得分:1)
将此添加到您的environment.rb:
ENV['RAILS_ENV'] ||= 'development'
答案 2 :(得分:0)
据我所知,通过RAILS_ENV设置Rails环境对DreamHost共享服务器没有帮助,因为他们严格按照生产环境运行Passenger。