tvl-depot/client
William Carroll fe609bbe58 Support CRUDing records on Admin page
TL;DR:
- Prefer the more precise verbiage, "Accounts", to "Users"
- Add username field to Trip instead of relying on session.username
- Ensure that decodeRole can JD.fail for invalid inputs
2020-08-02 15:15:01 +01:00
..
src Support CRUDing records on Admin page 2020-08-02 15:15:01 +01:00
.gitignore Add Elm boilerplate to project 2020-07-29 09:51:18 +01:00
dir-locals.nix Support a basic client-side login flow 2020-07-31 18:57:35 +01:00
elm.json Support creating Trips from the frontend 2020-08-01 23:04:06 +01:00
index.css Support creating Trips from the frontend 2020-08-01 23:04:06 +01:00
index.html Support printing user's itinerary 2020-08-02 14:23:38 +01:00
print.css Support printing user's itinerary 2020-08-02 14:23:38 +01:00
README.md Support a basic client-side login flow 2020-07-31 18:57:35 +01:00
shell.nix Support a basic client-side login flow 2020-07-31 18:57:35 +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
$ npx tailwindcss build index.css -o output.css
$ elm-live -- src/Main.elm --output=Main.min.js

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