Skip to content

Commit

Permalink
Added :inets to extra applications and :zerossl to :included_applicat…
Browse files Browse the repository at this point in the history
  • Loading branch information
dominicletz committed Mar 20, 2024
1 parent 0158c57 commit 7aeba8b
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions mix.exs
Expand Up @@ -18,15 +18,17 @@ defmodule CertMagex.MixProject do
package: package(),
homepage_url: @url,
aliases: aliases(),
description: "Automatic SSL certificates for your Apps"
description: "Automatic SSL certificates for your Apps",
dialyzer: [plt_add_apps: [:zerossl]]
]
end

# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger],
mod: {CertMagex.Application, []}
extra_applications: [:logger, :inets],
mod: {CertMagex.Application, []},
included_applications: [:zerossl]
]
end

Expand Down

0 comments on commit 7aeba8b

Please sign in to comment.