metamaps--metamaps/config/initializers/redis.rb
2014-05-17 15:02:48 -04:00

6 lines
345 B
Ruby

if Rails.env.development? ## this also applies to metamaps.cc production mode
$redis = Redis.new(:host => 'localhost', :port=> 6379)
elsif Rails.env.production? ## this is for the heroku staging environment
uri = URI.parse(ENV["REDISTOGO_URL"])
$redis = Redis.new(:host => uri.host, :port => uri.port, :password => uri.password)
end