1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 22:42:08 +02:00
tldr/pages/common/ember.md
bl-ue 8ebd171d6f
*: fix typos reported by Hunspell (#5848)
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>
2021-05-20 16:13:41 -04:00

37 lines
628 B
Markdown

# 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}}`