so, this zip doesn't have the right url... just fix it like so:
in js/service.js:
substitute line 6:
return $resource('http://movieapp-13434.onmodulus.net/api/movies/:id',{id:'@_id'},{
for the following three:
$url = 'http://movieapp-sitepointdemos.rhcloud.com/api/movies/:id';
//$url = 'http://movieapp-13434.onmodulus.net/api/movies/:id';
return $resource($url,{id:'@_id'},{
just because I want to keep all info... otherwise, just erase the commented line and keep right url.