The Ember web client for Travis CI
Go to file
Piotr Sarnacki d4955c1ed0 Fix hooks toggling
New ember-data serializers send data without a model key in the payload
by default, so instead of what API expects:

    {
      "hook": {
        "id": 1,
        "active": true
      }
    }

it would send:

    { "id": 1, "active": true }

Because of that we need to change how hooks are serialized.

Furthermore, API V2 returns just "result: true" after a successful
request to change a hook, so we need to return something meaningful from
the adapter's updateRecord in order to make ember-data happy.
2015-12-08 10:18:08 +01:00
app Fix hooks toggling 2015-12-08 10:18:08 +01:00
ci Don't run Sauce tests for now 2015-12-08 10:18:05 +01:00
config add userlike config option 2015-07-15 14:26:41 +02:00
public clean up icons and other assets 2015-12-04 11:44:24 +01:00
ssl Add ssl certs for localhost, for ssl testing 2015-06-02 11:15:36 +02:00
tests 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
vendor remove charmscout, add userlike 2015-07-09 15:56:21 +02:00
waiter add userlike config option 2015-07-15 14:26:41 +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 Don't warn about unused vars, it's annoying with function arguments 2015-09-02 13:17:29 +02: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 trying newer node 2015-12-02 14:17:59 -08: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 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
CONTRIBUTING.md Added missing word "repo" 2013-03-18 23:05:06 -03:00
ember-cli-build.js 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
Gemfile Revert "Move Gemfile to waiter" 2015-02-06 08:38:33 +01:00
Gemfile.lock Revert "Move Gemfile to waiter" 2015-02-06 08:38:33 +01: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 Update ember-cli-coffeescript to newest version 2015-12-08 10:18:06 +01:00
Procfile Move server/ to waiter/ 2015-02-03 10:13:48 +01:00
README.md update readme 2015-11-17 12:33:09 +01:00
run_qunit.js Change spec runner to qunit 2013-07-30 17:12:58 +02:00
SSL_LOCALLY.md Add ability to run dev ruby server with SSL 2015-02-25 12:00:41 +01:00
testem.json Remove invalid data 2015-09-08 15:24:14 -04: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 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.coffee.
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.