view config/config_init.rb @ 262:cd927bb7dc0d

Move out custom application config
author nanaya <me@nanaya.net>
date Mon, 16 Dec 2024 01:39:38 +0900
parents e2150dce4e90
children 2fc76c51e184
line wrap: on
line source

$cfg = {
  twitter: [
    {
      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"]
    }
  ],
  redis_server: ENV["RT_REDIS_SERVER"]
}

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

require config_local if File.exist? config_local

$cfg.freeze