This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Change Uncommmented stuff in BikeService.service.js | |
// Change ctrl.bikes = BikeService.all(); in dashboard.controller | |
// in index.html change dash.bikes to dash.bikes.bikes | |
var Bike = function(options){ | |
this.brand = options.brand || '', | |
this.price = options.price || 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Production/Staging workflow Steps | |
Make Heroku App for Staging | |
Make Heroku App for Production | |
Add remote for production | |
heroku git:remote -a <APPNAME> -r <REMOTENAME> | |
add remote for staging |
OlderNewer