Dear all,
I have created a Dash application as a Julia module (say myApp.jl
). This module has its own environment that I update from time to time. However, when I update the environment, the precompilation step of myApp.jl
gets stuck and I have to stop the process. I suspect this is because the module contains the run_server
function that makes the application run.
Is there any way to avoid running the run_server
function during precompilation?
Thanks for your help