mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 21:42:08 +02:00

Co-authored-by: marchersimon <50295997+marchersimon@users.noreply.github.com> Co-authored-by: Seth Falco <seth@falco.fun> Co-authored-by: Patrice Denis <patricedenis@users.noreply.github.com>
628 B
628 B
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}}