mirror of
https://github.com/livebook-dev/livebook.git
synced 2024-12-26 17:33:44 +08:00
ac8e1e30f4
* Setup Docker image with releases * Support ip env variable and use it for Docker deployment * Autofocus auth forms * Rename ip env var * Update option lists * Make distribution cookie configurable * Update README.md Co-authored-by: José Valim <jose.valim@dashbit.co> * Include git in the final image * Remove unnecessary build dependency * Improve file permissions handling and add more comments * Use namespaced home directory * Update README with all running options * Update base image * Reference official Docker image in the README Co-authored-by: José Valim <jose.valim@dashbit.co>
70 lines
1.6 KiB
Elixir
70 lines
1.6 KiB
Elixir
defmodule Livebook.MixProject do
|
|
use Mix.Project
|
|
|
|
def project do
|
|
[
|
|
app: :livebook,
|
|
version: "0.1.0",
|
|
elixir: "~> 1.11",
|
|
elixirc_paths: elixirc_paths(Mix.env()),
|
|
compilers: [:phoenix] ++ Mix.compilers(),
|
|
start_permanent: Mix.env() == :prod,
|
|
aliases: aliases(),
|
|
deps: deps(),
|
|
escript: escript(),
|
|
releases: releases()
|
|
]
|
|
end
|
|
|
|
def application do
|
|
[
|
|
mod: {Livebook.Application, []},
|
|
extra_applications: [:logger, :runtime_tools, :os_mon, :inets, :ssl]
|
|
]
|
|
end
|
|
|
|
defp elixirc_paths(:test), do: ["lib", "test/support"]
|
|
defp elixirc_paths(_), do: ["lib"]
|
|
|
|
defp deps do
|
|
[
|
|
{:phoenix, "~> 1.5.7"},
|
|
{:phoenix_live_view, "~> 0.15.0"},
|
|
{:phoenix_live_dashboard, "~> 0.4"},
|
|
{:floki, ">= 0.27.0", only: :test},
|
|
{:phoenix_html, "~> 2.11"},
|
|
{:phoenix_live_reload, "~> 1.2", only: :dev},
|
|
{:telemetry_metrics, "~> 0.4"},
|
|
{:telemetry_poller, "~> 0.4"},
|
|
{:jason, "~> 1.0"},
|
|
{:plug_cowboy, "~> 2.0"},
|
|
{:earmark_parser, "~> 1.4"},
|
|
{:bypass, "~> 2.1", only: :test},
|
|
{:castore, "~> 0.1.0"}
|
|
]
|
|
end
|
|
|
|
defp aliases do
|
|
[
|
|
"dev.setup": ["deps.get", "cmd npm install --prefix assets"],
|
|
"dev.build": ["cmd npm run deploy --prefix ./assets"],
|
|
"format.all": ["format", "cmd npm run format --prefix ./assets"]
|
|
]
|
|
end
|
|
|
|
defp escript() do
|
|
[
|
|
main_module: LivebookCLI,
|
|
app: nil
|
|
]
|
|
end
|
|
|
|
defp releases() do
|
|
[
|
|
livebook: [
|
|
include_executables_for: [:unix],
|
|
include_erts: false
|
|
]
|
|
]
|
|
end
|
|
end
|