app.get('/',function(req,res){
res.sendFile(path.join(publicDir, 'index.html'));
});
.state('main', {
url: "/",
abstract: true,
templateUrl: "templates/main.html",
controller: 'AppCtrl',
data: {
requireLogin: false
}
})