Skip to content

Commit

Permalink
Update LAB_09a-Implement_Web_Apps.md
Browse files Browse the repository at this point in the history
  • Loading branch information
staleycyn authored Aug 29, 2023
1 parent 4bda980 commit 7a1ae7e
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions Instructions/Labs/LAB_09a-Implement_Web_Apps.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,11 +102,13 @@ In this task, you will configure web app deployment settings.

| Setting | Value |
| --- | ---|
| User name | any globally unique name (must not contain `@` character) |
| Password | any password that satisfies complexity requirements|

>**Note:** You will need these credentials in the next task of this lab.
| User name | any globally unique name (see note) |
| Password | any password that satisfies complexity requirements (see note) |

>**Note:** Copy these credentials to Notepad. You will need them later.
>**Note:** These credentials will be passed through the URI. Do not include any special charaters that affect the interpretation of the URI. For example, @, $, or #. An asterick or plus sign (in the middle of the string) would work.
## Task 4: Deploy code to the staging deployment slot

In this task, you will deploy code to the staging deployment slot.
Expand Down Expand Up @@ -140,11 +142,9 @@ In this task, you will deploy code to the staging deployment slot.
1. From the Cloud Shell pane, run the following to push the sample web app code from the local repository to the Azure web app staging deployment slot (make sure to replace the `[deployment_user_name]` placeholder with the value of the **Deployment Credentials** user name, which you identified in previous task):

```powershell
git push [deployment_user_name] master
git push https://<deployment-username>:<deployment-password>@<app-name>.scm.azurewebsites.net/<app-name>.git master
```

1. If prompted to authenticate, type the `[deployment_user_name]` and the corresponding password (which you set in the previous task).

1. Close the Cloud Shell pane.

1. On the staging slot blade, click **Overview** and then click the **URL** link to display the default web page in a new browser tab.
Expand Down

0 comments on commit 7a1ae7e

Please sign in to comment.