mirror of
https://github.com/livebook-dev/livebook.git
synced 2025-02-23 22:37:41 +08:00
Remote cell definition (#2197)
This commit is contained in:
parent
a67d44e7b2
commit
c77d63b2a1
1 changed files with 11 additions and 1 deletions
|
@ -3,7 +3,7 @@ defmodule Livebook.Runtime.Definitions do
|
|||
|
||||
kino = %{
|
||||
name: "kino",
|
||||
dependency: %{dep: {:kino, "~> 0.10.0"}, config: []}
|
||||
dependency: %{dep: {:kino, github: "livebook-dev/kino", override: true}, config: []}
|
||||
}
|
||||
|
||||
kino_vega_lite = %{
|
||||
|
@ -183,6 +183,16 @@ defmodule Livebook.Runtime.Definitions do
|
|||
packages: [kino_explorer]
|
||||
}
|
||||
]
|
||||
},
|
||||
%{
|
||||
kind: "Elixir.Kino.RemoteExecutionCell",
|
||||
name: "Remote execution",
|
||||
requirement_presets: [
|
||||
%{
|
||||
name: "Default",
|
||||
packages: [kino]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
|
||||
|
|
Loading…
Reference in a new issue