-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathmix.exs
91 lines (84 loc) · 2.88 KB
/
mix.exs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
defmodule Prop.MixProject do
use Mix.Project
def project do
[
app: :prop,
version: "0.0.5",
elixir: "~> 1.13",
package: package(),
elixirc_paths: elixirc_paths(Mix.env()),
compilers: [:phoenix, :gettext] ++ Mix.compilers(),
start_permanent: Mix.env() == :prod,
description: description(),
aliases: aliases(),
deps: deps()
]
end
def application do
[
mod: {Prop.Application, []},
extra_applications: [:logger, :runtime_tools]
]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
defp deps do
[
{:accessible, "~> 0.3"},
{:confex, "~> 3.5.0"},
{:ecto_sql, "~> 3.4"},
{:history, "~> 0.0.23"},
{:jason, "~> 1.0"},
{:libcluster, "~> 3.2"},
{:livebook, "~> 0.5"},
{:master_proxy, "~> 0.1"},
{:navigator, "~> 0.0.7"},
{:notified_phoenix, "~> 0.0.7"},
{:phoenix, "~> 1.6.0"},
{:phoenix_ecto, "~> 4.4"},
{:phoenix_html, "~> 3.0"},
{:phoenix_live_dashboard, "~> 0.4"},
{:phoenix_live_view, "~> 0.17"},
{:plug_cowboy, "~> 2.0"},
{:postgrex, ">= 0.0.0"},
{:rube, "~> 0.0.4"},
# {:slurpee, github: "fremantle-industries/slurpee", branch: "main", override: true},
{:slurpee, "~> 0.0.11"},
# {:stylish, github: "fremantle-industries/stylish", branch: "main", override: true},
{:stylish, "~> 0.0.8"},
{:tai, "~> 0.0.75"},
{:telemetry_metrics, "~> 0.4"},
{:telemetry_poller, "~> 1.0"},
# {:workbench, github: "fremantle-industries/workbench", branch: "main", override: true},
{:workbench, "~> 0.0.17"},
{:excoveralls, "~> 0.8", only: :test},
{:ex_unit_notifier, "~> 1.0", only: :test},
{:floki, ">= 0.30.0", only: :test},
{:dialyxir, "~> 1.0", only: :dev, runtime: false},
{:mix_test_watch, "~> 1.0", only: :dev, runtime: false},
{:phoenix_live_reload, "~> 1.2", only: :dev}
]
end
defp aliases do
[
setup: ["setup.deps", "setup.tai", "setup.workbench", "setup.history", "ecto.setup"],
"setup.deps": ["deps.get", "cmd npm install --prefix assets"],
"setup.tai": ["tai.gen.migration"],
"setup.workbench": ["workbench.gen.migration"],
"setup.history": ["history.gen.migration"],
"ecto.setup": ["ecto.create", "ecto.migrate", "run priv/repo/seeds.exs"],
"ecto.reset": ["ecto.drop", "ecto.setup"],
test: ["ecto.create --quiet", "ecto.migrate --quiet", "test"]
]
end
defp description do
"An open and opinionated DeFi/CeFi/TradFi trading platform using productive & familiar open source libraries and tools for strategy research, execution and operation"
end
defp package do
%{
licenses: ["MIT"],
maintainers: ["Alex Kwiatkowski"],
links: %{"GitHub" => "https://github.com/fremantle-industries/prop"}
}
end
end