From 37bdafa9db6bf1717280f38a4aaef8b5b89d1459 Mon Sep 17 00:00:00 2001
From: Robert Wilkins III <1147229+genome21@users.noreply.github.com>
Date: Thu, 20 Apr 2023 03:17:40 +0000
Subject: [PATCH] clarify notes to connect to vm
---
scripts/walkthroughtutorial.md | 9 ++++-----
1 file changed, 4 insertions(+), 5 deletions(-)
diff --git a/scripts/walkthroughtutorial.md b/scripts/walkthroughtutorial.md
index 2711ccd93..dd107a770 100644
--- a/scripts/walkthroughtutorial.md
+++ b/scripts/walkthroughtutorial.md
@@ -45,17 +45,16 @@ In the next step, you'll learn how to connect to the Langflow VM.
To connect to your new Langflow VM, follow these steps:
-1. Navigate to the [VM instances](https://console.cloud.google.com/compute/instances) page
-2. Click on the external IP for your VM
-
or
-3. Run the following command to store the VM's IP in a variable called `LANGFLOW-IP`:
+1. Navigate to the [VM instances](https://console.cloud.google.com/compute/instances) page and click on the external IP for your VM. Make sure to use HTTP and set the port to 8080
+
**or**
+3. Run the following command to display the URL for your Langflow environment:
```bash
export LANGFLOW_IP=$(gcloud compute instances list --filter="NAME=langflow-dev" --format="value(EXTERNAL_IP)")
echo http://$LANGFLOW_IP:8080
```
-4. You will be greeted by the Langflow Dev environment
+4. Click on the Langflow URL in cloudshell to be greeted by the Langflow Dev environment
Congratulations! You have successfully deployed Langflow on Google Cloud Platform.