aboutsummaryrefslogtreecommitdiff
path: root/mix.exs
diff options
context:
space:
mode:
authorNathan Perry <np@nathanperry.dev>2020-02-17 02:08:09 -0500
committerNathan Perry <np@nathanperry.dev>2020-02-17 02:08:09 -0500
commit19b6ba3153eb5f21b0b38c6a7889e0aef82356f4 (patch)
tree3c389216dbb4973fbc1289a2c979b50a173379f3 /mix.exs
parent021108b2c9a34c05d2b1e3e7899c29d8de463e41 (diff)
rework a bunch of stuffelixir.prev.2
Diffstat (limited to 'mix.exs')
-rw-r--r--mix.exs10
1 files changed, 1 insertions, 9 deletions
diff --git a/mix.exs b/mix.exs
index ada3618..d769ba0 100644
--- a/mix.exs
+++ b/mix.exs
@@ -13,29 +13,21 @@ defmodule Thulani.MixProject do
end
defp deps do
- [
- {:toml, "~> 0.6.1"}
- ]
+ []
end
defp releases do
- config_providers = [
- # {Toml.Provider, ["./config.toml", "/etc/thulani/config.toml"]}
- ]
-
applications = [thulani_bot: :permanent]
[
thulani_flex: [
include_executables_for: [:unix, :windows],
strip_beams: false,
- config_providers: config_providers,
applications: applications
],
thulani_prod: [
include_executables_for: [:unix],
strip_beams: true,
- config_providers: config_providers,
applications: applications
]
]