Add part8

This commit is contained in:
Richard Feldman
2018-08-12 09:49:12 -04:00
parent 84b9e97023
commit 5777848d74
55 changed files with 5943 additions and 0 deletions

17
intro/part8/README.md Normal file
View File

@@ -0,0 +1,17 @@
# Part 8
Once again, we'll be building `src/Main.elm`, but editing a different file.
To build everything, `cd` into the `part8/` directory and run8
```shell
elm make src/Main.elm --output ../server/public/elm.js
```
Then open `http://localhost:3000` in your browser.
## Exercise
We need to make login work. Currently it doesn't actually send a HTTP request to the server.
We'll fix this by editing `src/Page/Login.elm` and resolving the TODOs there.