Clone the repo
$ git clone git@github.com:coxandrew/address-book.git
Set up Rails:
$ cd ../rails
$ bundle
$ rake db:create db:migrate db:seed
$ rails s
Set up Ember
$ cd ../ember
$ npm install -g bower
$ npm install
$ bower install
Start the test Ember server
$ ember server --proxy http://localhost:3000
Go to:
http://localhost:4200
- List the users left to right as contact cards with:
- Circle avatars with white borders
- Name
- Relationship w/ icon
- Lists number of shared albums ("Sharing 2 albums with you" or "No shared albums")
- You can reorder your contacts manually by drag 'n drop
- On drop, update the position on the server: PUT /users/:id { position: 1 }
This project has been set up with: