2016-12-04 13:07:02 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-11-28 15:21:05 -05:00
|
|
|
port = ENV.fetch('PORT') { 3000 }
|
|
|
|
host = ENV.fetch('LOCAL_DOMAIN') { "localhost:#{port}" }
|
|
|
|
https = ENV['LOCAL_HTTPS'] == 'true'
|
2016-12-04 13:07:02 -05:00
|
|
|
|
2016-02-22 12:10:30 -05:00
|
|
|
Rails.application.configure do
|
2016-11-28 15:21:05 -05:00
|
|
|
config.x.local_domain = host
|
|
|
|
config.x.use_https = https
|
2016-11-06 14:43:16 -05:00
|
|
|
config.x.use_s3 = ENV['S3_ENABLED'] == 'true'
|
2016-02-29 14:06:39 -05:00
|
|
|
|
2016-11-28 15:21:05 -05:00
|
|
|
config.action_mailer.default_url_options = { host: host, protocol: https ? 'https://' : 'http://', trailing_slash: false }
|
2016-08-18 12:51:50 -04:00
|
|
|
|
|
|
|
if Rails.env.production?
|
2016-11-28 15:21:05 -05:00
|
|
|
config.action_cable.allowed_request_origins = ["http#{https ? 's' : ''}://#{host}"]
|
2016-08-18 12:51:50 -04:00
|
|
|
end
|
2016-02-22 12:10:30 -05:00
|
|
|
end
|