This repository has been archived by the owner on Dec 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
mix.exs
57 lines (51 loc) · 1.38 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
defmodule MishkaCms.Umbrella.MixProject do
use Mix.Project
@version "0.0.2"
def project do
[
apps_path: "apps",
version: @version,
start_permanent: Mix.env() == :prod,
deps: deps(),
aliases: aliases(),
name: "MishkaCms",
source_url: "https://github.com/mishka-group/mishka-cms",
homepage_url: "https://mishka.group/",
description: description(),
package: package(),
dialyzer: [
list_unused_filters: true
],
docs: [
# The main page in the docs
main: "MishkaCms"
# logo: "path/to/logo.png",
# extras: ["README.md"]
]
]
end
defp deps do
[
{:ex_doc, "~> 0.23", only: :dev, runtime: false},
{:dialyxir, "~> 1.1", only: [:dev], runtime: false}
]
end
defp aliases do
[
"assets.deploy": ["esbuild default --minify", "phx.digest"],
setup: ["cmd mix setup"],
"ecto.setup": ["ecto.drop", "ecto.create", "ecto.migrate"]
]
end
defp description() do
"MishkaCms an open source and real time API base CMS Powered by Elixir and Phoenix"
end
defp package() do
[
files: ~w(apps config .formatter.exs mix.exs LICENSE README*),
licenses: ["Apache License 2.0"],
maintainers: ["Shahryar Tavakkoli", "Mojtaba Naseri"],
links: %{"GitHub" => "https://github.com/mishka-group/mishka-cms"}
]
end
end