Skip to content

Commit fbdec22

Browse files
authored
Merge pull request #1580 from code-corps/update-docs-for-ember-serve-command
Updated docs with ember server -> ember serve
2 parents 4c0d062 + bbd3e18 commit fbdec22

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/USAGE.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Don't want to worry about setting up an API? This is best for work that's happen
2222
You can use our [`ember-cli-mirage`](http://www.ember-cli-mirage.com/) server by running:
2323

2424
```shell
25-
ember server --environment=mirage-development
25+
ember serve --environment=mirage-development
2626
```
2727

2828
(Be careful about copying and pasting this line, as on some machines the `--` might get converted into a ``).
@@ -36,7 +36,7 @@ Want to work directly with a Code Corps API running on your machine?
3636
You can work with our [Elixir API](https://github.com/code-corps/code-corps-api/) server by running
3737

3838
```shell
39-
ember server
39+
ember serve
4040
```
4141

4242
Doing so will try to connect to the API under the port settings found under the API's documentation.
@@ -48,7 +48,7 @@ Want to work with an environment that's similar to staging?
4848
You can use our remote development server by running:
4949

5050
```shell
51-
ember server --environment=remote-development
51+
ember serve --environment=remote-development
5252
```
5353

5454
(Be careful about copying and pasting this line, as on some machines the `--` might get converted into a ``).
@@ -63,11 +63,11 @@ Note that Ember is able to live-reload as changes are made to the codebase. Embe
6363

6464
Need to stop the Ember server? `Ctrl+C` will do the trick.
6565

66-
To start the server again run `ember server`, with whichever environment flag you prefer.
66+
To start the server again run `ember serve`, with whichever environment flag you prefer.
6767

6868
## Rebuilding Ember
6969

70-
To rebuild, simply run `ember server`. You can clear cached dependencies with `npm cache clean`, `bower cache clean`, then reinstall.
70+
To rebuild, simply run `ember serve`. You can clear cached dependencies with `npm cache clean`, `bower cache clean`, then reinstall.
7171

7272
Or, more simply, use [nombom](https://www.npmjs.com/package/nombom) which automates this process as one command: `nombom`.
7373

0 commit comments

Comments
 (0)