Skip to content

Instantly share code, notes, and snippets.

@rocLv
Created March 26, 2017 15:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rocLv/103beda755eb28563627272a24d030d1 to your computer and use it in GitHub Desktop.
Save rocLv/103beda755eb28563627272a24d030d1 to your computer and use it in GitHub Desktop.
require_relative 'boot'
require 'csv'
require 'rails/all'
# Require the gems listed in Gemfile, including any gems
# you've limited to :test, :development, or :production.
Bundler.require(*Rails.groups)
module Giant
class Application < Rails::Application
# Settings in config/environments/* take precedence over those specified here.
# Application configuration should go into files in config/initializers
# -- all .rb files in that directory are automatically loaded.
config.time_zone = 'Beijing'
config.active_record.default_timezone = :local
WillPaginate.per_page = 15
config.before_configuration do
env_file = File.join(Rails.root, 'config', 'env.yml')
YAML.load(File.open(env_file)).each do |key, value|
ENV[key.to_s] = value
end if File.exists?(env_file)
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment