Last active
August 29, 2015 14:06
-
-
Save kannans/bda0e2b65f5930813564 to your computer and use it in GitHub Desktop.
Install EmberCli on Ubuntu
This file contains hidden or 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
Before install ember-cli need some package to install. | |
NPM - Node Package Manager | |
sudo apt-get purge nodejs npm | |
sudo apt-get install -y python-software-properties python g++ make software-properties-common | |
sudo add-apt-repository ppa:chris-lea/node.js | |
sudo apt-get update | |
sudo apt-get install nodejs | |
Ember-CLi - ember client package manager | |
npm install -g ember-cli | |
Power - power package manager for install dependencies | |
npm install -g bower | |
Phantomjs - phantomjs for testing js code | |
npm install -g phantomjs | |
Rsvp addition package if required | |
npm install rsvp | |
Install livereload chrome extension | |
https://chrome.google.com/webstore/detail/livereload/jnihajbhpnppcggbcgedagnkighmdlei | |
Deployment: | |
commit your changes and deploy to heroku | |
Create heroku app with buildback | |
$ heroku create --buildpack https://github.com/tonycoco/heroku-buildpack-ember-cli.git | |
$ git push heroku master |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment