From 9e3f44bf744cda9f362854e5883f7065c192d5f8 Mon Sep 17 00:00:00 2001 From: Willem van den Ende Date: Thu, 2 Apr 2026 09:49:20 +0000 Subject: [PATCH] change dev server to unique (fixed) port --- app/config/dev.exs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/config/dev.exs b/app/config/dev.exs index 2aa21f5..a30f521 100644 --- a/app/config/dev.exs +++ b/app/config/dev.exs @@ -19,7 +19,7 @@ config :firehose, Firehose.Repo, config :firehose, FirehoseWeb.Endpoint, # Binding to loopback ipv4 address prevents access from other machines. # Change to `ip: {0, 0, 0, 0}` to allow access from other machines. - http: [ip: {0, 0, 0, 0}, port: String.to_integer(System.get_env("PORT") || "4050")], + http: [ip: {0, 0, 0, 0}, port: String.to_integer(System.get_env("PORT") || "8056")], check_origin: false, code_reloader: true, debug_errors: true,