From 620cf2bbc74209db8ccf856ece5d78f5658fa8b1 Mon Sep 17 00:00:00 2001 From: Eric O Date: Wed, 17 Jan 2024 18:08:34 -0500 Subject: [PATCH] Add triclops_processing environment file --- config/environments/triclops_processing.rb | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 config/environments/triclops_processing.rb diff --git a/config/environments/triclops_processing.rb b/config/environments/triclops_processing.rb new file mode 100644 index 0000000..98bf005 --- /dev/null +++ b/config/environments/triclops_processing.rb @@ -0,0 +1,6 @@ +require Rails.root.join('config/environments/deployed.rb') + +Rails.application.configure do + # Setting host so that url helpers can be used in mailer views. + config.action_mailer.default_url_options = { host: 'https://triclops-processing.library.columbia.edu' } +end