-
Notifications
You must be signed in to change notification settings - Fork 11
/
mix.exs
46 lines (41 loc) · 1.2 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
defmodule Smartcitiesdata.MixProject do
use Mix.Project
def project do
[
apps_path: "apps",
start_permanent: Mix.env() == :prod,
deps: deps(),
aliases: aliases(),
docs: docs(),
description: description()
]
end
defp deps, do: []
defp aliases do
[
test: "cmd mix test --color",
"test.e2e": "cmd --app e2e mix test.integration --color --include e2e",
sobelow_andi:
"cmd --app andi mix sobelow -i Config.HTTPS,Config.CSWH,Config.Secrets,Config.HSTS --skip --compact --exit low",
sobelow_discovery_api:
"cmd --app discovery_api mix sobelow -i Config.HTTPS,Config.Secrets --skip --compact --exit low"
]
end
defp description, do: "A data ingestion and processing platform for the next generation."
defp docs() do
[
main: "readme",
source_url: "https://github.com/UrbanOS-Public/smartcitiesdata.git",
extras: [
"README.md",
"apps/andi/README.md",
"apps/reaper/README.md",
"apps/valkyrie/README.md",
"apps/estuary/README.md",
"apps/discovery_streams/README.md",
"apps/forklift/README.md",
"apps/flair/README.md"
]
]
end
end