Skip to content

Commit 51b9f93

Browse files
committed
Update git push to git push origin main
1 parent a2d6006 commit 51b9f93

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

learn-pr/advocates/automatic-update-of-a-webapp-using-azure-functions-and-signalr/includes/5-exercise-enable-automatic-updates-in-a-web-app-using-signalr.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ The web client uses the SignalR client SDK to establish a connection to the serv
8585
```bash
8686
git add .
8787
git commit -m "Add SignalR functions"
88-
git push
88+
git push origin main
8989
```
9090
9191
## Create the `signalr-send-message` function
@@ -175,7 +175,7 @@ At this point, the managed identity and Functions app have been created but not
175175
```bash
176176
git add .
177177
git commit -m "Update deployment workflow to use package path"
178-
git push
178+
git push origin main
179179
```
180180

181181
This change will trigger the workflow to run. You can watch the workflow from the **Actions** section of the fork on GitHub.
@@ -194,9 +194,8 @@ At this point, the managed identity and Functions app have been created but not
194194

195195
## Test the deployment of the API Functions
196196

197-
1. In the Azure portal, select **Overview** and select **URL** to open the app in a browser.
198-
1. Copy the URL, you'll need that when you update the client `.env` file for the `BACKEND_URL` value when you work in Unit 7.
199-
1. Open the URL in a browser to test the API functions.
197+
1. In the Azure portal, select **Overview** and select **Default domain** to open the app in a browser to test the API functions.
200198
1. Append `/api/getStocks` to the URL in the browser and press **Enter**. You should see a JSON array with stock data.
199+
1. Copy the URL, you'll need that when you update the client `.env` file for the `BACKEND_URL` value when you work in Unit 7.
201200
202201
You've updated the server code to return stocks with SignalR and you've deployed to a function app. Next, you'll update the client to use SignalR to receive updates.

learn-pr/advocates/automatic-update-of-a-webapp-using-azure-functions-and-signalr/includes/7-exercise-host-a-static-website-using-a-storage-account.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ The workflow needs to have the `BACKEND_URL` environment variable set to the dep
9090
```bash
9191
git add .
9292
git commit -m "Add BACKEND_URL environment variable"
93-
git push
93+
git push origin main
9494
```
9595

9696
1. Open the **Actions** tab in the GitHub fork repository to watch the deployment.

0 commit comments

Comments
 (0)