Skip to content

Instantly share code, notes, and snippets.

@rwjblue
Last active October 10, 2016 23:01
Show Gist options
  • Save rwjblue/9216101d3d15a9134bdd to your computer and use it in GitHub Desktop.
Save rwjblue/9216101d3d15a9134bdd to your computer and use it in GitHub Desktop.

Revisions

  1. rwjblue revised this gist Jul 29, 2014. 1 changed file with 16 additions and 1 deletion.
    17 changes: 16 additions & 1 deletion ember-master-in-ember-cli-app.md
    Original 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.
  2. rwjblue created this gist Jul 29, 2014.
    8 changes: 8 additions & 0 deletions ember-master-in-ember-cli-app.md
    Original 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
    ```