-
I’ve got a mix project installed in a livebook with a root_path = Path.join(__DIR__, "..")
Mix.install(
[
{:my_app, path: root_path, env: :dev},
...
],
config_path: Path.join(root_path, "config/config.exs"),
lockfile: Path.join(root_path, "mix.lock")
) Is there a way to recompile the project when there are code changes in the mix project, without reconnecting the livebook runtime? The turnaround time is quite big now, when reconnecting and running all previous code cells again. Running
Using |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
It is not a possibility right now. We have plans to Mix.install/2 re-runnable but that will require changes in Elixir first. |
Beta Was this translation helpful? Give feedback.
-
Tip: the most convenient way to do this without moving back and forth is to restart the runtime with Technically you could also do |
Beta Was this translation helpful? Give feedback.
It is not a possibility right now. We have plans to Mix.install/2 re-runnable but that will require changes in Elixir first.