This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2016-11-07 14:20:52 -08:00
|
|
|
port = ENV.fetch('PORT') { 3000 }
|
|
|
|
|
2016-02-22 09:10:30 -08:00
|
|
|
Rails.application.configure do
|
2016-11-07 14:20:52 -08:00
|
|
|
config.x.local_domain = ENV.fetch('LOCAL_DOMAIN') { "localhost:#{port}" }
|
|
|
|
config.x.hub_url = ENV.fetch('HUB_URL') { 'https://pubsubhubbub.superfeedr.com' }
|
2016-02-29 11:06:39 -08:00
|
|
|
config.x.use_https = ENV['LOCAL_HTTPS'] == 'true'
|
2016-11-06 11:43:16 -08:00
|
|
|
config.x.use_s3 = ENV['S3_ENABLED'] == 'true'
|
2016-02-29 11:06:39 -08:00
|
|
|
|
2016-09-04 05:04:26 -07:00
|
|
|
config.action_mailer.default_url_options = { host: config.x.local_domain, protocol: config.x.use_https ? 'https://' : 'http://', trailing_slash: false }
|
2016-08-18 09:51:50 -07:00
|
|
|
|
|
|
|
if Rails.env.production?
|
|
|
|
config.action_cable.allowed_request_origins = ["http#{config.x.use_https ? 's' : ''}://#{config.x.local_domain}"]
|
|
|
|
end
|
2016-02-22 09:10:30 -08:00
|
|
|
end
|