Using remote_console to access IEx in production
How do you access iex for a compiled Elixir app?
The short answer is to ssh into your production server and use either attach
or remote_console
commands. When working locally, you can just run iex -S mix
directly to access the console of your Elixir apps.
This video shows how to get to the IEx console of your compiled Elixir app while it’s running in production
More at https://alchemist.camp
Read next Using vmstats in Elixir