Turn your stack server into an OTP application.
It already is! :)
See the most recent stack implementation. More specifically, in the mix.exs file, see the application function:
def application do
[applications: [:logger],
mod: {Stack, []}]
end
This was automatically generated by mix when we created the project.