travis-web/config/environment.js
Piotr Sarnacki dfc22014a8 Set page titles relevant to page is loaded
I used ember-cli-document-title addon.
2015-02-17 14:35:59 +01:00

99 lines
3.0 KiB
JavaScript

/* jshint node: true */
module.exports = function(environment) {
var ENV = {
modulePrefix: 'travis',
environment: environment,
baseURL: '/',
locationType: 'auto',
defaultTitle: 'Travis CI',
EmberENV: {
FEATURES: {
// Here you can enable experimental features on an ember canary build
// e.g. 'with-controller': true
}
},
APP: {
// Here you can pass flags/options to your application instance
// when it is created
},
// defaults for running travis-web
apiEndpoint: 'https://api.travis-ci.org',
source_endpoint: 'https://github.com',
pusher: {
key: '5df8ac576dcccf4fd076',
host: 'ws.pusherapp.com'
},
pro: false,
enterprise: false,
endpoints: {},
intervals: { updateTimes: 1000 }
};
if (typeof process !== 'undefined') {
if (process.env.TRAVIS_PRO) {
// set defaults for pro if it's used
// TODO: we have the same defaults also in ruby process,
// it would be nice to move it to one place. In theory
// we could just remove it from ruby process and rely
// on things set here, but I haven't tested that yet.
ENV.pro = true;
ENV.apiEndpoint = 'https://api.travis-ci.com';
ENV.pusher.key = '59236bc0716a551eab40';
ENV.pagesEndpoint = 'https://billing.travis-ci.com';
ENV.billingEndpoint = 'https://billing.travis-ci.com';
ENV.endpoints = {
sshKey: true,
caches: true
};
ENV.charmKey = 'gy5gx7dy6dh86hxzkz1wmtvupwvievu';
}
}
if (environment === 'development') {
// ENV.APP.LOG_RESOLVER = true;
// ENV.APP.LOG_ACTIVE_GENERATION = true;
// ENV.APP.LOG_TRANSITIONS = true;
// ENV.APP.LOG_TRANSITIONS_INTERNAL = true;
// ENV.APP.LOG_VIEW_LOOKUPS = true;
}
if (environment === 'test') {
// Testem prefers this...
ENV.baseURL = '/';
ENV.locationType = 'none';
// keep test console output quieter
ENV.APP.LOG_ACTIVE_GENERATION = false;
ENV.APP.LOG_VIEW_LOOKUPS = false;
ENV.APP.rootElement = '#ember-testing';
ENV.apiEndpoint = '';
}
if (environment === 'production') {
}
// TODO: I insert values from ENV here, but in production
// this file is compiled and is not executed on runtime.
// We don't use CSP at the moment outside of development (ie. we don't
// set CSP headers), but it would be nice to do it and then we need to
// think about a better way to override it
ENV.contentSecurityPolicy = {
'default-src': "'none'",
'script-src': "'self'",
'font-src': "'self' https://fonts.googleapis.com/css https://fonts.gstatic.com",
'connect-src': "'self' " + ENV.apiEndpoint + " ws://ws.pusherapp.com wss://ws.pusherapp.com http://sockjs.pusher.com https://s3.amazonaws.com/archive.travis-ci.com/ https://s3.amazonaws.com/archive.travis-ci.org/",
'img-src': "'self' data: https://www.gravatar.com http://www.gravatar.com",
'style-src': "'self' https://fonts.googleapis.com",
'media-src': "'self'",
'frame-src': "'self' " + ENV.apiEndpoint
}
return ENV;
};