From 3c50811d245b4e8673f20ee0f86bf7b1bc5d3145 Mon Sep 17 00:00:00 2001 From: Dan Barber Date: Wed, 28 Feb 2018 10:12:12 -0500 Subject: [PATCH] Wrong app name in production config --- config/prod.exs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/prod.exs b/config/prod.exs index 6b2576c..6fe4568 100644 --- a/config/prod.exs +++ b/config/prod.exs @@ -8,7 +8,7 @@ config :chess, ChessWeb.Endpoint, secret_key_base: "${SECRET_KEY_BASE}", server: true, url: [host: "localhost", port: {:system, "PORT"}], - version: Application.spec(:myapp, :vsn) + version: Application.spec(:chess, :vsn) config :chess, Chess.Repo, adapter: Ecto.Adapters.Postgres,