Available at: https://meeting-price-counter.web.app/
As the name implies, this will be a simple web app where you can count how much money is being spent on a meeting. Just enter the number of attendees, the average salary and click start counting.
This project was created so I could learn more about the elm programming language and TDD.
npm install -g elm elm-test
npm install -g elm elm-test elm-oracle elm-format elm-json @elm-tooling/elm-language-server elm-review
git clone git@github.com:mfdavid/meeting-price-counter-elm.git
cd meeting-price-counter-elm
elm-test
npm i -g elm-coverage
elm-coverage --open
elm reactor
Then go to http://localhost:8000/src/Main.elm
elm-json upgrade
If you want to update major versions (unsafe upgrade):
elm-json upgrade --unsafe
This project uses elm-review to help find mistakes.
elm-review
The rules are configured in the review
folder.