equal
deleted
inserted
replaced
20 * `npm install` |
20 * `npm install` |
21 * `bower install` |
21 * `bower install` |
22 |
22 |
23 ## Running / Development |
23 ## Running / Development |
24 |
24 |
25 * `ember server` |
25 * `npm start` (shortcut for `ember serve --environment=development` which serve the application) |
26 * Visit your app at [http://localhost:4200](http://localhost:4200). |
26 * Visit your app at [http://localhost:4200](http://localhost:4200). |
27 |
27 |
28 ### Code Generators |
28 ### Code Generators |
29 |
29 |
30 Make use of the many generators for code, try `ember help generate` for more details |
30 Make use of the many generators for code, try `ember help generate` for more details |
32 ### Running Tests |
32 ### Running Tests |
33 |
33 |
34 * `ember test` |
34 * `ember test` |
35 * `ember test --server` |
35 * `ember test --server` |
36 |
36 |
37 ### Building |
37 ## Build / Production |
38 |
38 |
39 * `ember build` (development) |
39 * `npm build` (shortcut for `ember build --environment=production` which serve the application) |
40 * `ember build --environment production` (production) |
40 * Visit /dist to check the built files |
41 |
41 |
42 ### Deploying |
42 ## Api configuration |
43 |
43 |
44 Specify what it takes to deploy your app. |
44 * As Ember advices, all the logic of the api (host, namespace), is located in /adapters/application.js |
45 |
|
46 ## Further Reading / Useful Links |
|
47 |
|
48 * [ember.js](http://emberjs.com/) |
|
49 * [ember-cli](http://www.ember-cli.com/) |
|
50 * Development Browser Extensions |
|
51 * [ember inspector for chrome](https://chrome.google.com/webstore/detail/ember-inspector/bmdblncegkenkacieihfhpjfppoconhi) |
|
52 * [ember inspector for firefox](https://addons.mozilla.org/en-US/firefox/addon/ember-inspector/) |
|
53 |
|