The Ember web client for Travis CI
Go to file
Curtis Ekstrom 1f5eb7f525 Revert to old container lookup behavior
This fixes a bug that affected only pro
2016-04-15 05:58:52 +02:00
app Revert to old container lookup behavior 2016-04-15 05:58:52 +02:00
config Remove all remaining app deprecations 2016-04-13 18:06:28 +02:00
mirage Fix various small issues with test suite 2016-03-07 13:28:51 +01:00
public Merge pull request #488 from fauxton/ce_upgrade_ember_cli 2016-04-13 11:05:00 +02:00
ssl Update ssl keys for localhost 2015-12-08 11:17:18 +01:00
tests Remove getOwner polyfill 2016-04-14 12:25:24 +02:00
vendor Revert "Update travis-web-log" 2016-01-27 12:42:50 +01:00
waiter camelize channelPrefix option 2016-04-08 14:41:22 +02:00
.bowerrc Add the rest of ember-cli app 2015-02-03 09:53:42 +01:00
.buildpacks Use travis-web-ember-cli-buildpack 2015-02-03 11:08:31 +01:00
.editorconfig Update Ember.js to 1.11.3 2015-04-30 12:48:12 +02:00
.ember-cli Add the rest of ember-cli app 2015-02-03 09:53:42 +01:00
.gitignore Removed .DS_Store from index and added it to .gitignore 2015-06-10 10:02:51 -04:00
.jshintrc Add ember-cli-mirage addon 2016-03-07 13:27:44 +01:00
.rspec Add some color to rspec 2012-11-10 15:47:33 +01:00
.ruby-version fixed the build header cut-off on pull requests 2014-12-10 21:30:45 +01:00
.slugignore Don't ignore assets directory when building slug 2012-10-30 02:23:06 +01:00
.travis.yml Upgrade Ember-CLI to 2.4.3 2016-04-12 10:25:44 +02:00
.watchmanconfig Update ember-cli to 1.13.12 (ember.js 1.13.10, ember-data 1.13.15) 2015-12-08 10:18:06 +01:00
bower.json Bump Ember to 2.4.5 2016-04-14 09:44:50 +02:00
CONTRIBUTING.md Added missing word "repo" 2013-03-18 23:05:06 -03:00
ember-cli-build.js Exclude emoji images from fingerprinting to speed up production builds 2016-04-12 15:32:15 +02:00
Gemfile Revert "Move Gemfile to waiter" 2015-02-06 08:38:33 +01:00
Gemfile.lock Adding Ana to the team page as well as Mexico's flag 2016-03-14 10:35:07 -04:00
LICENSE Fix typo in LICENSE file name 2013-11-28 15:40:13 +01:00
NOTES.txt Use bind-attr instead of deprecated bindAttr. 2014-01-07 21:00:26 -05:00
package.json Remove Ember 2.3 deprecation warnings 2016-04-14 09:38:59 +02:00
Procfile Move server/ to waiter/ 2015-02-03 10:13:48 +01:00
README.md Fix file location for app/routes/team.{coffee,js} in README.md 2016-01-11 09:37:54 +02:00
run_qunit.js Change spec runner to qunit 2013-07-30 17:12:58 +02:00
testem.js Simplify testem logic and remove console logging 2016-04-12 23:04:08 +02:00

Travis CI ember web client

Build Status

Running the app

The app is developed using Ember CLI. It requires nodejs with npm installed.

In order to run the app you need to install dependencies with:

bower install
npm install

Now you can run the server:

ember serve

And open http://localhost:4200 in the browser.

Alternatively you can run ember build --watch and start the server with waiter/script/server

Running the app in private repos mode

At the moment Travis CI is available as two separate sites - https://travis-ci.org for Open Source projects and https://travis-ci.com for private projects. travis-web will connect to the Open Source version by default. In order to connect it to the API for private projects you need to run:

TRAVIS_PRO=true ember serve --ssl --ssl-key=ssl/server.key --ssl-cert=ssl/server.crt

One caveat here is that the command will start server with SSL, so the page will be accessible at https://localhost:4200 (note https part).

Running on SSL in general

Sometimes there is a need to test the app with an SSL connection. This is required to make Pusher work when running Travis CI Pro, but it may also be needed in other situations.

There's already an SSL certificate in the ssl directory, which is set for localhost host. If you want to use it, you can start the server with:

ember serve --ssl --ssl-key=ssl/server.key --ssl-cert=ssl/server.crt

In case you want your own certificate, you can follow the instructions posted here: https://gist.github.com/trcarden/3295935 and then point the server to your certificate with --ssl-key and --ssl-cert.

Running tests

To run a test suite execute:

ember test

You can also start an interactive test runner for easier development:

ember test --serve

Updating the team page

The team information can be found in app/routes/team.js. To add another member just add the info in the same style as the previous ones. Like so

{
  name: 'Mr T'
  title: 'Mascot'
  handle: 'travisci'
  nationality: 'internet'
  country: 'internet'
  image: 'mrt'
}

The order of value pairs does not matter, the quotationmarks do. Name and title will be displayed as they are. The handle will be used to generate a link to Twitter and displayed with a '@' in front of it. Nationality and country determine the flags. Please use the name of the country and not the adjective (like 'germany' and NOT 'german'). Image is the identifier to find the right image and animated gif. 'mrt' in the example will result in team-mrt.png and mrt-animated.gif. Add the images themselves to public/images/team/ and additional flags to public/images/pro-landing/. Mind the naming conventions already in place.