When running (compiling) the project on localhost using Elixir 1.8.1 we see many warnings ...

Most (if not all) of these are due to the underlying libraries Phoenix, Ecto, Poison, etc. being out-of-date. So we need to run mix deps.update and fix any broken tests.
Todo
When running (compiling) the project on

localhostusingElixir 1.8.1we see many warnings ...Most (if not all) of these are due to the underlying libraries
Phoenix,Ecto,Poison, etc. being out-of-date. So we need to runmix deps.updateand fix any broken tests.Todo
--warnings-as-errorsenabled in a project that is kept up-to-date.That way anyone working on the project will immediately see when a warning appears.
It was removed in f38b2c4 to make Travis-CI pass, but I feel it should be re-instated.