The Application Specification File
Understand the application specification file in Elixir.
We'll cover the following...
So far in our quick tour of Elixir and OTP, we’ve looked at server processes and the supervisors that monitor them. There’s one more stage in our journey: the application.
A different kind of application
Because OTP comes from the Erlang world, it uses Erlang names for things. And unfortunately, some of these names aren’t terribly descriptive. The name application is one of these. When most of us talk about applications, we think of a program we run to do something, maybe on our computer or ...