Packages

A reverse proxy for use in Livebook. Supports host-based routing to other Livebook apps.

Current section

Files

Jump to
Raw

mix.exs

defmodule KinoReverseProxy.MixProject do
use Mix.Project
def project do
[
app: :kino_reverse_proxy,
version: "0.1.0",
elixir: "~> 1.18",
start_permanent: Mix.env() == :prod,
deps: deps(),
description: description(),
package: package()
]
end
def description() do
"""
A reverse proxy for use in Livebook. Supports host-based routing to other Livebook apps.
"""
end
def package() do
[
licenses: ["Apache-2.0"],
links: %{"GitHub" => "https://github.com/elepedus/kino_reverse_proxy"},
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:bandit, "~> 1.2"},
{:reverse_proxy_plug, "~> 2.3"},
{:kino, "~> 0.12"},
{:httpoison, "~> 2.0"},
{:meck, "~> 0.9", only: :test},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false}
]
end
end