mirror of
https://github.com/livebook-dev/livebook.git
synced 2025-09-04 20:14:57 +08:00
Add support for Clickhouse (#2840)
Co-authored-by: Jonatan Kłosko <jonatanklosko@gmail.com>
This commit is contained in:
parent
ffd6b99bd9
commit
31ba2121a6
1 changed files with 18 additions and 1 deletions
|
@ -65,6 +65,11 @@ defmodule Livebook.Runtime.Definitions do
|
|||
dependency: %{dep: {:flame_k8s_backend, "~> 0.5"}, config: []}
|
||||
}
|
||||
|
||||
explorer = %{
|
||||
name: "explorer",
|
||||
dependency: %{dep: {:explorer, "~> 0.10.0"}, config: []}
|
||||
}
|
||||
|
||||
jason = %{
|
||||
name: "jason",
|
||||
dependency: %{dep: {:jason, "~> 1.4"}, config: []}
|
||||
|
@ -100,7 +105,19 @@ defmodule Livebook.Runtime.Definitions do
|
|||
%{
|
||||
name: "req_athena",
|
||||
dependency: %{dep: {:req_athena, ">= 0.0.0"}, config: []}
|
||||
}
|
||||
},
|
||||
explorer
|
||||
]
|
||||
},
|
||||
%{
|
||||
name: "Clickhouse",
|
||||
packages: [
|
||||
kino_db,
|
||||
%{
|
||||
name: "req_ch",
|
||||
dependency: %{dep: {:req_ch, ">= 0.0.0"}, config: []}
|
||||
},
|
||||
explorer
|
||||
]
|
||||
},
|
||||
%{
|
||||
|
|
Loading…
Add table
Reference in a new issue