-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmix.exs
More file actions
55 lines (50 loc) · 1.22 KB
/
mix.exs
File metadata and controls
55 lines (50 loc) · 1.22 KB
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
defmodule Eddb.MixProject do
use Mix.Project
def project do
[
app: :eddb,
version: "0.16.0",
elixir: "~> 1.16",
start_permanent: Mix.env() == :prod,
description: description(),
package: package(),
deps: deps(),
name: "Eddb",
source_url: "https://github.com/micartey/elixir-distributed-database",
docs: [
main: "readme",
source_ref: "master",
extras: ["README.md", "LICENSE"]
]
]
end
defp description() do
"Distirbuted database for unstructured data"
end
defp package() do
[
name: "eddb",
files: ~w(lib .formatter.exs mix.exs README* LICENSE*),
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/micartey/elixir-distributed-database"}
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
mod: {Eddb, []},
extra_applications: [:logger]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:plug_cowboy, "~> 2.0"},
{:poison, "~> 6.0"},
{:cluster_bot, "~> 0.2.0"},
{:yajwt, "~> 1.0"},
{:joken, "~> 2.6"},
{:ex_doc, "~> 0.34", only: :dev, runtime: false}
]
end
end