Last active
October 10, 2016 23:01
-
-
Save rwjblue/9216101d3d15a9134bdd to your computer and use it in GitHub Desktop.
Revisions
-
rwjblue revised this gist
Jul 29, 2014 . 1 changed file with 16 additions and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -5,4 +5,19 @@ git clone [email protected]:emberjs/ember.js cd ember.js npm install npm start ``` While that is running open another terminal and run the following (starting from the `ember.js` folder you cloned a moment ago): ```bash cd dist bower link ``` Now navigate to your Ember CLI application, and run: ```bash bower link ember ``` Now the changes you make to the ember.js repo, should be reflected live in your running Ember CLI project. -
rwjblue created this gist
Jul 29, 2014 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,8 @@ From a terminal run the following commands: ```bash git clone [email protected]:emberjs/ember.js cd ember.js npm install npm start ```