Update READMEs for part2, part3, and part4

This commit is contained in:
Richard Feldman
2018-05-05 05:52:54 -04:00
parent af4ad8e46b
commit 4944d215c3
3 changed files with 32 additions and 11 deletions

View File

@@ -1,7 +1,14 @@
# Part 2
To build everything:
To build everything, `cd` into the `part2/` directory and run:
```shell
elm-live src/Main.elm --output=../server/public/elm.js --dir=../server/public --pushstate
```
elm make --output=../server/public/elm.js src/Main.elm --pushstate --open
```
Then open [http://localhost:3000](http://localhost:3000) in your browser.
## Exercise
Open `src/Page/Home.elm` in your editor and resolve the TODOs there.

View File

@@ -1,7 +1,14 @@
# Part 2
# Part 3
To build everything:
To build everything, `cd` into the `part3/` directory and run:
```shell
elm-live src/Main.elm --output=../server/public/elm.js --dir=../server/public --pushstate
```
elm make --output=../server/public/elm.js src/Main.elm --pushstate --open
```
Then open [http://localhost:3000](http://localhost:3000) in your browser.
## Exercise
Open `src/Page/Home.elm` in your editor and resolve the TODOs there.

View File

@@ -1,7 +1,14 @@
# Part 2
# Part 4
To build everything:
To build everything, `cd` into the `part4/` directory and run:
```shell
elm-live src/Main.elm --output=../server/public/elm.js --dir=../server/public --pushstate
```
elm make --output=../server/public/elm.js src/Main.elm --pushstate --open
```
Then open [http://localhost:3000](http://localhost:3000) in your browser.
## Exercise
Open `src/Page/Home.elm` in your editor and resolve the TODOs there.