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