From 9a1474aac407261aa0df59ff305dd5387c97d976 Mon Sep 17 00:00:00 2001 From: Lisa P Date: Tue, 17 Nov 2015 12:33:09 +0100 Subject: [PATCH] update readme --- README.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/README.md b/README.md index 9da26c89..a2b16dee 100644 --- a/README.md +++ b/README.md @@ -16,6 +16,8 @@ Now you can run the server: 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: @@ -25,3 +27,21 @@ To run a test suite execute: 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.