-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
43 lines (41 loc) · 1006 Bytes
/
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
defmodule Protohackers.MixProject do
use Mix.Project
def project do
[
apps_path: "apps",
version: "0.1.0",
elixir: "~> 1.14",
start_permanent: Mix.env() == :prod,
deps: deps(),
releases: [
smoke_test: [
applications: [smoke_test: :permanent]
],
prime_time: [
applications: [prime_time: :permanent]
],
means_to_an_end: [
applications: [means_to_an_end: :permanent]
],
budget_chat: [
applications: [budget_chat: :permanent]
],
unusual_database_program: [
applications: [unusual_database_program: :permanent]
],
mob_in_the_middle: [
applications: [mob_in_the_middle: :permanent]
],
speed_daemon: [
applications: [speed_daemon: :permanent]
],
line_reversal: [
applications: [line_reversal: :permanent]
]
]
]
end
defp deps do
[]
end
end