System Grab Bag

View all TLDR pages from common (or from all pages)

ember

The Ember.js command-line utility. Used for creating and maintaining Ember.js applications. More information: https://cli.emberjs.com.
  • Create a new Ember application:
    ember new {{my_new_app}}
  • Create a new Ember addon:
    ember addon {{my_new_addon}}
  • Build the project:
    ember build
  • Build the project in production mode:
    ember build -prod
  • Run the development server:
    ember serve
  • Run the test suite:
    ember test
  • Run a blueprint to generate something like a route or component:
    ember generate {{type}} {{name}}
  • Install an ember-cli addon:
    ember install {{name_of_addon}}

License and Disclaimer

The content on this page is copyright © 2014—present the tldr-pages team and contributors.
This page is used with permission under Creative Commons Attribution 4.0 International License.

While we do attempt to make sure content is accurate, there isn't a warranty of any kind.