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