I’m building/deploying an application using mix release
. As part of my build, I have custom mix compiler modules that compile new modules. This works find when running the project locally.
When I run mix release
, the modules are compiled but are not automatically loaded when running ./bin/my_app start
from the releases folder. The beam files exists, and I can manually load them. Is there something I need to do to ensure these modules are automatically loaded?