78 lines
2.6 KiB
Ruby
78 lines
2.6 KiB
Ruby
# Make sure we set that before everything
|
|
ENV['RACK_ENV'] ||= ENV['RAILS_ENV'] || ENV['ENV']
|
|
ENV['RAILS_ENV'] = ENV['RACK_ENV']
|
|
|
|
$: << 'lib'
|
|
require 'travis/web'
|
|
|
|
class RedirectSubdomain < Struct.new(:app, :from)
|
|
def call(env)
|
|
request = Rack::Request.new(env)
|
|
if request.host == from
|
|
[301, { 'Location' => "https://travis-ci.org#{request.fullpath}", 'Content-Type' => 'text/html' }, []]
|
|
else
|
|
app.call(env)
|
|
end
|
|
end
|
|
end
|
|
|
|
unless ENV['TRAVIS_PRO']
|
|
use RedirectSubdomain, 'secure.travis-ci.org'
|
|
end
|
|
|
|
use Rack::MobileDetect, :redirect_to => ENV['MOBILE_ENDPOINT'] if ENV['MOBILE_ENDPOINT']
|
|
|
|
use Travis::Web::SetToken
|
|
use Travis::Web::Allow
|
|
|
|
use Travis::Web::ApiRedirect do |app|
|
|
app.settings.api_endpoint = ENV['API_ENDPOINT'] if ENV['API_ENDPOINT']
|
|
end
|
|
|
|
if ENV['TRAVIS_PRO']
|
|
ENV['API_ENDPOINT'] ||= "https://api.travis-ci.com"
|
|
ENV['PAGES_ENDPOINT'] ||= "https://billing.travis-ci.com"
|
|
ENV['BILLING_ENDPOINT'] ||= "https://billing.travis-ci.com"
|
|
|
|
ENV['SSH_KEY_ENABLED'] = 'true' unless ENV.has_key?('SSH_KEY_ENABLED')
|
|
ENV['CACHES_ENABLED'] = 'true' unless ENV.has_key?('CACHES_ENABLED')
|
|
|
|
ENV['PUSHER_KEY'] ||= "59236bc0716a551eab40"
|
|
ENV['GA_CODE'] ||= "UA-24868285-5"
|
|
|
|
ENV['CODE_CLIMATE_URL'] ||= "https://codeclimate.com/partners/travisci"
|
|
ENV['CODE_CLIMATE'] = 'true' unless ENV.has_key?('CODE_CLIMATE')
|
|
end
|
|
|
|
if ENV['TRAVIS_ENTERPRISE']
|
|
ENV['SSH_KEY_ENABLED'] = 'true' unless ENV.has_key?('SSH_KEY_ENABLED')
|
|
ENV['CACHES_ENABLED'] = 'true' unless ENV.has_key?('CACHES_ENABLED')
|
|
end
|
|
|
|
run Travis::Web::App.build(
|
|
userlike: ENV['USERLIKE'],
|
|
environment: ENV['RACK_ENV'] || 'development',
|
|
api_endpoint: ENV['API_ENDPOINT'],
|
|
pages_endpoint: ENV['PAGES_ENDPOINT'],
|
|
billing_endpoint: ENV['BILLING_ENDPOINT'],
|
|
source_endpoint: ENV['SOURCE_ENDPOINT'] || 'https://github.com',
|
|
pusher_key: ENV['PUSHER_KEY'],
|
|
pusher_host: ENV['PUSHER_HOST'] || 'ws.pusherapp.com',
|
|
pusher_path: ENV['PUSHER_PATH'],
|
|
ga_code: ENV['GA_CODE'],
|
|
root: File.expand_path('../../dist', __FILE__),
|
|
server_start: Time.now,
|
|
caches_enabled: ENV['CACHES_ENABLED'],
|
|
ssh_key_enabled: ENV['SSH_KEY_ENABLED'],
|
|
pusher_log_fallback: ENV['PUSHER_LOG_FALLBACK'],
|
|
charm_key: ENV['CHARM_KEY'],
|
|
customer_io_site_id: ENV['CUSTOMER_IO_SITE_ID'],
|
|
pro: ENV['TRAVIS_PRO'],
|
|
enterprise: ENV['TRAVIS_ENTERPRISE'],
|
|
code_climate: ENV['CODE_CLIMATE'],
|
|
code_climate_url: ENV['CODE_CLIMATE_URL'],
|
|
assets_host: ENV['ASSETS_HOST'],
|
|
ajax_polling: ENV['AJAX_POLLING'],
|
|
github_orgs_oauth_access_settings_url: ENV['GITHUB_ORGS_OAUTH_ACCESS_SETTINGS_URL']
|
|
)
|