Skip to content

Commit 5613022

Browse files
committed
Improve note around use of docker-ember in ember tutorial
1 parent 94b0311 commit 5613022

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

TUTORIALS.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,14 +222,16 @@ This tutorial builds on the [previous one](#creating-a-json-api) to add a UI to
222222

223223
Our end-users access the services through EmberJS application. This provides us with an integrated, styled and flexible view of the enabled microservices. We’ll create a new ember application to allow end-users to list, create, and delete authors. The advised way to build and develop EmberJS applications is using ember-cli.
224224

225-
You can install ember-cli from ember-cli.com, or you can use the ember-docker found at https://github.com/madnificent/docker-ember . Our examples assume you’ll use ember-docker.
225+
You can install ember-cli by following the instructions on [the emberjs website](https://cli.emberjs.com/), or you can keep everything in docker using the [ember-docker scripts](https://github.com/madnificent/docker-ember). Our examples assume you’ll use ember-docker, which provides the `edi` and `eds` commands. If you're using a globally installed ember-cli, simply remove `edi` from any commands and replace `eds` with `ember serve`.
226226

227227
#### Build a new app
228228

229229
First we create the new application. The command is short, but it may take a while to fetch all NPM dependencies. Grab a coffee while the computer works for you.
230230

231231
```sh
232232
edi ember new books
233+
# Or if using a globally installed ember-cli (see above)
234+
# ember new books
233235
```
234236

235237
#### Live reloading changes

0 commit comments

Comments
 (0)