- Go through the Developing with Elixir/OTP course.
- Update this
README.mdfile when done.
I'm leaving this Repo available mostly for my own reference.
Apart from what is presented in the course, it also contains lots of extra findings around:
- Project setup and managing environments
- Project tooling, ie.:
dialyzer (with dialyxir),credoandcortex - Some libraries and example usage, ie.:
tesla,poisonandearmark - Some experiments with the language, exercises and module reference (under
servy/lib/playground) - Testing setup and references (under
/servy/test)
And to those starting with or learning Elixir, I can't recommend the course enough!
To serve:
$ iex -S mixTo run tests:
$ mix testTo run all checks (tests, dialyzer and credo):
$ mix check_allTo automatically run tests related to changed files (with cortex):
$ MIX_ENV=test iex -S mix