From 07e3659c603db6667c5c7018939acca55df3ccda Mon Sep 17 00:00:00 2001 From: endrl <119058008+endrl@users.noreply.github.com> Date: Tue, 19 Nov 2024 15:29:24 +0100 Subject: [PATCH 1/2] fix: devcontainer interface binding --- loco-new/base_template/config/development.yaml.t | 2 ++ 1 file changed, 2 insertions(+) diff --git a/loco-new/base_template/config/development.yaml.t b/loco-new/base_template/config/development.yaml.t index 44ba73f0..09acc7d5 100644 --- a/loco-new/base_template/config/development.yaml.t +++ b/loco-new/base_template/config/development.yaml.t @@ -16,6 +16,8 @@ logger: # Web server configuration server: + # Interface to bind to + binding: {{ get_env(name="NODE_BINDING", default="localhost") }} # Port on which the server will listen. the server binding is 0.0.0.0:{PORT} port: 5150 # The UI hostname or IP address that mailers will point to. From d3828c67aa82a6e6a6350fe822062fe96c776200 Mon Sep 17 00:00:00 2001 From: endrl <119058008+endrl@users.noreply.github.com> Date: Tue, 19 Nov 2024 15:31:55 +0100 Subject: [PATCH 2/2] fix: devcontainer interface binding --- loco-new/base_template/config/test.yaml.t | 2 ++ 1 file changed, 2 insertions(+) diff --git a/loco-new/base_template/config/test.yaml.t b/loco-new/base_template/config/test.yaml.t index dcc902fc..5fc77baa 100644 --- a/loco-new/base_template/config/test.yaml.t +++ b/loco-new/base_template/config/test.yaml.t @@ -16,6 +16,8 @@ logger: # Web server configuration server: + # Interface to bind to + binding: {{ get_env(name="NODE_BINDING", default="localhost") }} # Port on which the server will listen. the server binding is 0.0.0.0:{PORT} port: 5150 # The UI hostname or IP address that mailers will point to.