From 0cad30a8fa342c8b42bf7ab3525489eacc379bca Mon Sep 17 00:00:00 2001 From: Warren Buckley Date: Tue, 15 Nov 2022 08:55:39 +0000 Subject: [PATCH] Adds SMTP4Dev and opens browser to HTTPs Umbraco --- .devcontainer/devcontainer.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index b56869cea1..b4d5c395cd 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -38,6 +38,11 @@ // This is used in the prebuilds - so dotnet build (nuget restore and node stuff) is done "updateContentCommand": "dotnet build umbraco.sln", "portsAttributes": { + "5000": { + "label": "SMTP4Dev", + "protocol": "http", + "onAutoForward": "notify" + }, "9000": { "label": "Umbraco HTTP", "protocol": "http", @@ -46,7 +51,7 @@ "44331": { "label": "Umbraco HTTPS", "protocol": "https", - "onAutoForward": "notify" + "onAutoForward": "openBrowser" } }