Files
elm-0.19-workshop/intro/part9
2018-08-26 17:24:39 -04:00
..
2018-08-12 14:50:14 -04:00
2018-08-15 17:37:42 -05:00
2018-08-12 14:50:14 -04:00
2018-08-12 14:50:14 -04:00
2018-08-15 17:32:47 -05:00

Part 9

Once again, we'll be building src/Main.elm, but editing a different file.

To build everything, cd into the part9/ directory and run:

elm make src/Main.elm --output ../server/public/elm.js

Then open http://localhost:3000 in your browser.

Exercise

Look at intro/server/public/index.html to see how the localforage ports are hooked up on the JavaScript side.

The exercise is to add the corresponding ports to src/Session.elm. See the TODOs in that file for more information!

When you're done, you should once again be able to sign up for a new account.