Files
elm-0.19-workshop/intro/part9/README.md
Richard Feldman 17f96d1b56 Add part9
2018-08-12 14:50:14 -04:00

18 lines
457 B
Markdown

# 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.