2016-12-04 13:07:02 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-05-03 17:18:13 -04:00
|
|
|
port = ENV.fetch('PORT') { 3000 }
|
|
|
|
host = ENV.fetch('LOCAL_DOMAIN') { "localhost:#{port}" }
|
2017-04-14 20:15:46 -04:00
|
|
|
web_host = ENV.fetch('WEB_DOMAIN') { host }
|
2016-12-04 13:07:02 -05:00
|
|
|
|
2017-08-24 11:51:32 -04:00
|
|
|
alternate_domains = ENV.fetch('ALTERNATE_DOMAINS') { '' }
|
2017-05-22 09:40:04 -04:00
|
|
|
|
2016-02-22 12:10:30 -05:00
|
|
|
Rails.application.configure do
|
2017-12-21 20:17:59 -05:00
|
|
|
https = Rails.env.production? || ENV['LOCAL_HTTPS'] == 'true'
|
|
|
|
|
2016-11-28 15:21:05 -05:00
|
|
|
config.x.local_domain = host
|
2017-04-14 20:15:46 -04:00
|
|
|
config.x.web_domain = web_host
|
2016-11-28 15:21:05 -05:00
|
|
|
config.x.use_https = https
|
2016-11-06 14:43:16 -05:00
|
|
|
config.x.use_s3 = ENV['S3_ENABLED'] == 'true'
|
2017-09-05 17:17:06 -04:00
|
|
|
config.x.use_swift = ENV['SWIFT_ENABLED'] == 'true'
|
2016-02-29 14:06:39 -05:00
|
|
|
|
2017-05-22 09:40:04 -04:00
|
|
|
config.x.alternate_domains = alternate_domains.split(/\s*,\s*/)
|
|
|
|
|
2017-04-14 20:15:46 -04:00
|
|
|
config.action_mailer.default_url_options = { host: web_host, protocol: https ? 'https://' : 'http://', trailing_slash: false }
|
2016-08-18 12:51:50 -04:00
|
|
|
|
2017-12-13 06:43:54 -05:00
|
|
|
config.x.streaming_api_base_url = ENV.fetch('STREAMING_API_BASE_URL') do
|
|
|
|
if Rails.env.production?
|
|
|
|
"ws#{https ? 's' : ''}://#{web_host}"
|
|
|
|
else
|
|
|
|
"ws://#{ENV['REMOTE_DEV'] == 'true' ? host.split(':').first : 'localhost'}:4000"
|
|
|
|
end
|
2016-08-18 12:51:50 -04:00
|
|
|
end
|
2016-02-22 12:10:30 -05:00
|
|
|
end
|