From 09aba917661ff5da5ced53a234447c3a9108120a Mon Sep 17 00:00:00 2001 From: Aamir Jawaid Date: Fri, 1 May 2026 00:41:15 +0000 Subject: [PATCH] docs(teams): note that tunnel port 3978 is the default, not fixed Co-Authored-By: Claude Sonnet 4.6 --- website/docs/user-guide/messaging/teams.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/website/docs/user-guide/messaging/teams.md b/website/docs/user-guide/messaging/teams.md index ce725e275..c77ac7d91 100644 --- a/website/docs/user-guide/messaging/teams.md +++ b/website/docs/user-guide/messaging/teams.md @@ -44,14 +44,14 @@ Teams cannot deliver messages to `localhost`. For local development, use any tun ```bash # devtunnel (Microsoft) devtunnel create hermes-bot --allow-anonymous -devtunnel port create hermes-bot -p 3978 --protocol https +devtunnel port create hermes-bot -p 3978 --protocol https # replace 3978 with TEAMS_PORT if changed devtunnel host hermes-bot # ngrok -ngrok http 3978 +ngrok http 3978 # replace 3978 with TEAMS_PORT if changed # cloudflared -cloudflared tunnel --url http://localhost:3978 +cloudflared tunnel --url http://localhost:3978 # replace 3978 with TEAMS_PORT if changed ``` Copy the `https://` URL from the output — you'll use it in the next step. Leave the tunnel running while developing.