From ad8b72cf935c33945ece00c9a369c8dd4bb63ddb Mon Sep 17 00:00:00 2001 From: Kieran Eglin Date: Sat, 24 Feb 2024 12:47:49 -0800 Subject: [PATCH] Added inets to application start so http calls work in prod --- mix.exs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mix.exs b/mix.exs index 7f3e61b..9a108b3 100644 --- a/mix.exs +++ b/mix.exs @@ -23,7 +23,7 @@ defmodule Pinchflat.MixProject do def application do [ mod: {Pinchflat.Application, []}, - extra_applications: [:logger, :runtime_tools] + extra_applications: [:logger, :runtime_tools, :inets] ] end