forked from tldr-pages/tldr
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
13045c5
commit 5010d4b
Showing
1 changed file
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# ember | ||
|
||
> The Ember.js command line utility. | ||
> Used for creating and maintaining Ember.js applications. | ||
- 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` | ||
|
||
- Run the development server: | ||
|
||
`ember serve` | ||
|
||
- Run the test suite: | ||
|
||
`ember test` | ||
|
||
- Generate files: | ||
|
||
`ember generate {{type}} {{name}}` | ||
|
||
- Install an ember-cli addon: | ||
|
||
`ember install {{name_of_addon}}` |