From db2acd7614c914b403473daf893e39b5314dc052 Mon Sep 17 00:00:00 2001 From: Adrian Gruntkowski Date: Mon, 21 Apr 2025 19:37:16 +0200 Subject: [PATCH] Change `HOST` to `WEB_HOST` to avoid conflicts with local env --- config/runtime.exs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/runtime.exs b/config/runtime.exs index a949407..775696a 100644 --- a/config/runtime.exs +++ b/config/runtime.exs @@ -1,6 +1,6 @@ import Config -config :jenot, host: System.fetch_env!("HOST") +config :jenot, host: System.fetch_env!("WEB_HOST") port = if config_env() == :test, do: 4001, else: 4000