view config/config_init.rb @ 88:cf9a9ce2d034

Increase cache timeout to ease up load ;_;
author nanaya <me@myconan.net>
date Tue, 28 Jun 2016 02:38:27 +0900
parents 0c023d35cd80
children f76d44baa3dc
line wrap: on
line source

$cfg = {
  :twitter0 => {
    :consumer_key => ENV["RT_CONSUMER_KEY"],
    :consumer_secret => ENV["RT_CONSUMER_SECRET"],
    :access_token => ENV["RT_ACCESS_TOKEN"],
    :access_token_secret => ENV["RT_ACCESS_TOKEN_SECRET"]
  },
  :memcached_servers => ENV["RT_MEMCACHED_SERVERS"].try(:split, ",")
}

config_local = File.expand_path("../config_local_#{Rails.env}.rb", __FILE__)

require config_local if File.exist? config_local

$cfg.freeze