You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/app-service/containers/quickstart-python.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -35,7 +35,7 @@ To complete this quickstart:
35
35
36
36
## Download the sample locally
37
37
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.
Copy file name to clipboardExpand all lines: articles/app-service/containers/tutorial-python-postgresql-app.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -135,13 +135,13 @@ Starting development server at http://127.0.0.1:8000/
135
135
Quit the server with CONTROL-C.
136
136
```
137
137
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.`.
139
139
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.
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.
145
145
146
146
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.
147
147
@@ -264,13 +264,13 @@ Once the admin user is created, run the Django server.
264
264
python manage.py runserver
265
265
```
266
266
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.
268
268
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.
270
270
271
271

272
272
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.
274
274
275
275
## Deploy to Azure
276
276
@@ -381,7 +381,7 @@ You should see the poll question that you created earlier.
381
381
382
382
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).
383
383
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.
385
385
386
386

387
387
@@ -395,7 +395,7 @@ Navigate to `<app-name>.azurewebsites.net` and sign in using same admin user you
395
395
396
396
Go to the [Azure portal](https://portal.azure.com) to see the app you created.
397
397
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.
399
399
400
400

0 commit comments