tvl-depot/client
William Carroll 9f70cb2c61 Add boilerplate for Google sign-in
For more information, read:
https://developers.google.com/identity/sign-in/web/sign-in?authuser=1

TODO: Use Elm ports or something similar to properly interop with the onSignIn
and signOn functions defined in index.html.
2020-07-29 10:13:19 +01:00
..
src Add boilerplate for Google sign-in 2020-07-29 10:13:19 +01:00
.gitignore Add Elm boilerplate to project 2020-07-29 09:51:18 +01:00
dir-locals.nix Add Elm boilerplate to project 2020-07-29 09:51:18 +01:00
elm.json Add Elm boilerplate to project 2020-07-29 09:51:18 +01:00
index.css Add Elm boilerplate to project 2020-07-29 09:51:18 +01:00
index.html Add boilerplate for Google sign-in 2020-07-29 10:13:19 +01:00
README.md Add Elm boilerplate to project 2020-07-29 09:51:18 +01:00
shell.nix Add Elm boilerplate to project 2020-07-29 09:51:18 +01:00

Elm

Elm has one of the best developer experiences that I'm aware of. The error messages are helpful and the entire experience is optimized to improve the ease of writing web applications.

Developing

If you're interested in contributing, the following will create an environment in which you can develop:

$ nix-shell
$ elm-live -- src/Main.elm --output=Main.min.js

You can now view your web client at http://localhost:8000!