-
I'm writing a kino. I've got a repo with something that works and notebook that When I make a change to the repo code, I need to somehow push the updated code into the livebook. So far, I've been committing the changes, updating the I assume the correct way to do this is to either run the livebook server out of an iex running in my kino repo, or to compile the code and push it into the running livebook node. Does anyone have instructions on how to actually do this or something else in this vein? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Use |
Beta Was this translation helpful? Give feedback.
-
That works. Thank you! |
Beta Was this translation helpful? Give feedback.
Use
Mix.install [{:my_kino, path: "/path/to/project"}]
. You still need to restart the runtime (pressing00
is a quick way to do it) but it should be much faster!