change dev server to unique (fixed) port

This commit is contained in:
Willem van den Ende 2026-04-02 09:49:20 +00:00
parent 5cc65ee391
commit 9e3f44bf74

View File

@ -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,