From 235952b072340c9b3c551b6ebe8dbefd9dbfcf4c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tao=20Bror=20Bojl=C3=A9n?= Date: Sat, 27 Jul 2019 13:56:00 +0300 Subject: [PATCH] add ES to extra_applications --- backend/mix.exs | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/backend/mix.exs b/backend/mix.exs index 30cfc62..10de50a 100644 --- a/backend/mix.exs +++ b/backend/mix.exs @@ -20,7 +20,15 @@ defmodule Backend.MixProject do def application do [ mod: {Backend.Application, []}, - extra_applications: [:logger, :runtime_tools, :mnesia, :gollum, :ex_twilio, :appsignal] + extra_applications: [ + :logger, + :runtime_tools, + :mnesia, + :gollum, + :ex_twilio, + :elasticsearch, + :appsignal + ] ] end