working on recipient_schedule relationships

This commit is contained in:
Jared Cosulich 2017-03-09 10:26:34 -05:00
parent b0e65da944
commit 64996c422a
15 changed files with 161 additions and 72 deletions

View file

@ -1,4 +1,12 @@
Rails.application.configure do
config.before_configuration do
env_file = File.join(Rails.root, 'config', 'local_env.yml')
YAML.load(File.open(env_file)).each do |key, value|
ENV[key.to_s] = value
end if File.exists?(env_file)
end
# Settings specified here will take precedence over those in config/application.rb.
# In the development environment your application's code is reloaded on