Skip to content

Commit b71ed7d

Browse files
authored
Merge pull request #86454 from craigcaseyMSFT/vcraic0823a
Update UI interaction terms
2 parents 04a0d34 + 2e65a23 commit b71ed7d

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

articles/app-service/containers/quickstart-python.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ To complete this quickstart:
3535

3636
## Download the sample locally
3737

38-
In a terminal window, run the following commands to clone the sample application to your local machine, and navigate to the directory with the sample code.
38+
In a terminal window, run the following commands to clone the sample application to your local machine, and go to the directory with the sample code.
3939

4040
```bash
4141
git clone https://github.com/Azure-Samples/python-docs-hello-world
@@ -63,7 +63,7 @@ Set-Item Env:FLASK_APP ".\application.py"
6363
flask run
6464
```
6565

66-
Open a web browser, and navigate to the sample app at `http://localhost:5000/`.
66+
Open a web browser, and go to the sample app at `http://localhost:5000/`.
6767

6868
You see the **Hello World!** message from the sample app displayed in the page.
6969

@@ -156,7 +156,7 @@ The Python sample code is running in App Service on Linux with a built-in image.
156156

157157
## Update locally and redeploy the code
158158

159-
In the Cloud Shell, type `code application.py` to open the Cloud Shell editor.
159+
In the Cloud Shell, enter `code application.py` to open the Cloud Shell editor.
160160

161161
![Code application.py](media/quickstart-python/code-applicationpy.png)
162162

@@ -182,7 +182,7 @@ Once deployment has completed, switch back to the browser window that opened in
182182

183183
Go to the <a href="https://portal.azure.com" target="_blank">Azure portal</a> to manage the app you created.
184184

185-
From the left menu, click **App Services**, and then click the name of your Azure app.
185+
From the left menu, select **App Services**, and then select the name of your Azure app.
186186

187187
![Portal navigation to Azure app](./media/quickstart-python/app-service-list.png)
188188

articles/app-service/containers/tutorial-python-postgresql-app.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -135,13 +135,13 @@ Starting development server at http://127.0.0.1:8000/
135135
Quit the server with CONTROL-C.
136136
```
137137

138-
Navigate to `http://localhost:8000` in a browser. You should see the message `No polls are available.`.
138+
Go to `http://localhost:8000` in a browser. You should see the message `No polls are available.`.
139139

140-
Navigate to `http://localhost:8000/admin` and sign in using the admin user you created in the last step. Click **Add** next to **Questions** and create a poll question with some choices.
140+
Go to `http://localhost:8000/admin` and sign in using the admin user you created in the last step. Select **Add** next to **Questions** and create a poll question with some choices.
141141

142142
![Python Django application running locally](./media/tutorial-python-postgresql-app/django-admin-local.png)
143143

144-
Navigate to `http://localhost:8000` again and see the poll question displayed.
144+
Go to `http://localhost:8000` again and see the poll question displayed.
145145

146146
The Django sample application stores user data in the database. If you are successful at adding a poll question, your app is writing data to the local PostgreSQL database.
147147

@@ -264,13 +264,13 @@ Once the admin user is created, run the Django server.
264264
python manage.py runserver
265265
```
266266

267-
Navigate to `http://localhost:8000` in again. You should see the message `No polls are available.` again.
267+
Go to `http://localhost:8000` in again. You should see the message `No polls are available.` again.
268268

269-
Navigate to `http://localhost:8000/admin` and sign in using the admin user you created, and create a poll question like before.
269+
Go to `http://localhost:8000/admin` and sign in using the admin user you created, and create a poll question like before.
270270

271271
![Python Django application running in locally](./media/tutorial-python-postgresql-app/django-admin-local.png)
272272

273-
Navigate to `http://localhost:8000` again and see the poll question displayed. Your app is now writing data to the database in Azure.
273+
Go to `http://localhost:8000` again and see the poll question displayed. Your app is now writing data to the database in Azure.
274274

275275
## Deploy to Azure
276276

@@ -381,7 +381,7 @@ You should see the poll question that you created earlier.
381381

382382
App Service detects a Django project in your repository by looking for a _wsgi.py_ in each subdirectory, which is created by `manage.py startproject` by default. When it finds the file, it loads the Django web app. For more information on how App Service loads Python apps, see [Configure built-in Python image](how-to-configure-python.md).
383383

384-
Navigate to `<app-name>.azurewebsites.net` and sign in using same admin user you created. If you like, try creating some more poll questions.
384+
Go to `<app-name>.azurewebsites.net` and sign in using same admin user you created. If you like, try creating some more poll questions.
385385

386386
![Python Django application running in locally](./media/tutorial-python-postgresql-app/django-admin-azure.png)
387387

@@ -395,7 +395,7 @@ Navigate to `<app-name>.azurewebsites.net` and sign in using same admin user you
395395

396396
Go to the [Azure portal](https://portal.azure.com) to see the app you created.
397397

398-
From the left menu, click **App Services**, then click the name of your Azure app.
398+
From the left menu, select **App Services**, then select the name of your Azure app.
399399

400400
![Portal navigation to Azure app](./media/tutorial-python-postgresql-app/app-resource.png)
401401

0 commit comments

Comments
 (0)