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/ai-services/openai/concepts/models.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -113,7 +113,7 @@ See [model versions](../concepts/model-versions.md) to learn about how Azure Ope
113
113
| gpt-4 (0314) || East US <br> France Central <br> South Central US <br> UK South |
114
114
| gpt-4 (0613) | Australia East <br> Canada East <br> France Central <br> Sweden Central <br> Switzerland North | East US <br> East US 2 <br> Japan East <br> UK South |
115
115
| gpt-4 (1106-preview) | Australia East <br> Canada East <br> East US 2 <br> France Central <br> Norway East <br> South India <br> Sweden Central <br> UK South <br> West US ||
116
-
| gpt-4 (vision-preview) | Sweden Central <br> West US| Switzerland North <br> Australia East |
116
+
| gpt-4 (vision-preview) | Sweden Central <br> West US <br> Japan East| Switzerland North <br> Australia East |
Copy file name to clipboardExpand all lines: articles/app-service/includes/quickstart-python/deploy-local-git.md
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -10,10 +10,10 @@ You can deploy your application code from a local Git repository to Azure by con
10
10
11
11
| Instructions | Screenshot |
12
12
|:----------------|-----------:|
13
-
|[!INCLUDE [Deploy local Git Azure portal 1](<./deploy-local-git-azure-portal-1.md>)]| :::image type="content" source="../../media/quickstart-python/deploy-local-git-azure-portal-1-240px.png" alt-text="A screenshot showing how to locate your App Service using the search toolbar at the top of the Azure portal." lightbox="../../media/quickstart-python/deploy-local-git-azure-portal-1.png"::: |
14
-
|[!INCLUDE [Deploy local Git Azure portal 2](<./deploy-local-git-azure-portal-2.md>)]| :::image type="content" source="../../media/quickstart-python/deploy-local-git-azure-portal-2-240px.png" alt-text="A screenshot showing how to navigate to the deployment center in App Service and select Local Git as the deployment method." lightbox="../../media/quickstart-python/deploy-local-git-azure-portal-2.png"::: |
15
-
|[!INCLUDE [Deploy local Git Azure portal 3](<./deploy-local-git-azure-portal-3.md>)]| :::image type="content" source="../../media/quickstart-python/deploy-local-git-azure-portal-3-240px.png" alt-text="A screenshot showing the deployment center after saving and the remote Git URL to use for deployments." lightbox="../../media/quickstart-python/deploy-local-git-azure-portal-3.png"::: |
16
-
|[!INCLUDE [Deploy local Git Azure portal 4](<./deploy-local-git-azure-portal-4.md>)]| :::image type="content" source="../../media/quickstart-python/deploy-local-git-azure-portal-4-240px.png" alt-text="A screenshot showing the location of the deployment credentials in the deployment center in App Service." lightbox="../../media/quickstart-python/deploy-local-git-azure-portal-4.png"::: |
13
+
|[!INCLUDE [Deploy local Git Azure portal 1](./deploy-local-git-azure-portal-1.md)]| :::image type="content" source="../../media/quickstart-python/deploy-local-git-azure-portal-1-240px.png" alt-text="A screenshot showing how to locate your App Service using the search toolbar at the top of the Azure portal." lightbox="../../media/quickstart-python/deploy-local-git-azure-portal-1.png"::: |
14
+
|[!INCLUDE [Deploy local Git Azure portal 2](./deploy-local-git-azure-portal-2.md)]| :::image type="content" source="../../media/quickstart-python/deploy-local-git-azure-portal-2-240px.png" alt-text="A screenshot showing how to navigate to the deployment center in App Service and select Local Git as the deployment method." lightbox="../../media/quickstart-python/deploy-local-git-azure-portal-2.png"::: |
15
+
|[!INCLUDE [Deploy local Git Azure portal 3](./deploy-local-git-azure-portal-3.md)]| :::image type="content" source="../../media/quickstart-python/deploy-local-git-azure-portal-3-240px.png" alt-text="A screenshot showing the deployment center after saving and the remote Git URL to use for deployments." lightbox="../../media/quickstart-python/deploy-local-git-azure-portal-3.png"::: |
16
+
|[!INCLUDE [Deploy local Git Azure portal 4](./deploy-local-git-azure-portal-4.md)]| :::image type="content" source="../../media/quickstart-python/deploy-local-git-azure-portal-4-240px.png" alt-text="A screenshot showing the location of the deployment credentials in the deployment center in App Service." lightbox="../../media/quickstart-python/deploy-local-git-azure-portal-4.png"::: |
17
17
18
18
Next, in the root directory of your application, configure a [Git remote](https://git-scm.com/book/en/v2/Git-Basics-Working-with-Remotes) that points to Azure using the Git URL of the Azure remote obtained in a previous step.
19
19
@@ -27,17 +27,17 @@ You can now push code from your local Git repository to Azure using the Git remo
27
27
git push azure main:master
28
28
```
29
29
30
-
The first time you push code to Azure, Git will prompt you for the Azure deployment credentials you obtained in the previous step. Git will then cache these credentials so you will not have to reenter them on subsequent deployments.
30
+
The first time you push code to Azure, Git will prompt you for the Azure deployment credentials you obtained in the previous step. Git will then cache these credentials so you won't have to reenter them on subsequent deployments.
31
31
32
32
### [Azure CLI](#tab/deploy-instructions-azcli)
33
33
34
34
First, configure the deployment source for your web app to be local Git using the `az webapp deployment source` command. This command will output the URL of the remote Git repository that you will be pushing code to. Make a copy of this value as you will need it in a later step.
Retrieve the deployment credentials for your application. These will be needed for Git to authenticate to Azure when you push code to Azure in a later step.
Next, in the root directory of your application, configure a [Git remote](https://git-scm.com/book/en/v2/Git-Basics-Working-with-Remotes) that points to Azure using the Git URL of the Azure remote obtained in a previous step.
43
43
@@ -51,4 +51,4 @@ You can now push code from your local Git repository to Azure using the Git remo
51
51
git push azure main:master
52
52
```
53
53
54
-
The first time you push code to Azure, Git will prompt you for the Azure deployment credentials you obtained in a previous step. Git will then cache these credentials so you will not have to reenter them on subsequent deployments.
54
+
The first time you push code to Azure, Git will prompt you for the Azure deployment credentials you obtained in a previous step. Git will then cache these credentials so you won't have to reenter them on subsequent deployments.
Copy file name to clipboardExpand all lines: articles/app-service/includes/quickstart-python/deploy-zip-file.md
+10-10Lines changed: 10 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -16,15 +16,15 @@ Build automation in Azure is enabled by setting the `SCM_DO_BUILD_DURING_DEPLOYM
16
16
17
17
| Instructions | Screenshot |
18
18
|:----------------|-----------:|
19
-
|[!INCLUDE [Enable build automation from Azure portal 1](<./deploy-zip-azure-portal-1.md>)]| :::image type="content" source="../../media/quickstart-python/deploy-zip-azure-portal-build-1-240px.png" alt-text="A screenshot showing the app settings for a web app and how to add a new setting in the Azure portal." lightbox="../../media/quickstart-python/deploy-zip-azure-portal-build-1.png"::: |
20
-
|[!INCLUDE [Enable build automation from Azure portal 2](<./deploy-zip-azure-portal-2.md>)]| :::image type="content" source="../../media/quickstart-python/deploy-zip-azure-portal-build-2-240px.png" alt-text="A screenshot showing the dialog box used to add an app setting in the Azure portal." lightbox="../../media/quickstart-python/deploy-zip-azure-portal-build-2.png"::: |
21
-
|[!INCLUDE [Enable build automation from Azure portal 3](<./deploy-zip-azure-portal-3.md>)]| :::image type="content" source="../../media/quickstart-python/deploy-zip-azure-portal-build-3-240px.png" alt-text="A screenshot showing the location of the save button." lightbox="../../media/quickstart-python/deploy-zip-azure-portal-build-3.png"::: |
19
+
|[!INCLUDE [Enable build automation from Azure portal 1](./deploy-zip-azure-portal-1.md)]| :::image type="content" source="../../media/quickstart-python/deploy-zip-azure-portal-build-1-240px.png" alt-text="A screenshot showing the app settings for a web app and how to add a new setting in the Azure portal." lightbox="../../media/quickstart-python/deploy-zip-azure-portal-build-1.png"::: |
20
+
|[!INCLUDE [Enable build automation from Azure portal 2](./deploy-zip-azure-portal-2.md)]| :::image type="content" source="../../media/quickstart-python/deploy-zip-azure-portal-build-2-240px.png" alt-text="A screenshot showing the dialog box used to add an app setting in the Azure portal." lightbox="../../media/quickstart-python/deploy-zip-azure-portal-build-2.png"::: |
21
+
|[!INCLUDE [Enable build automation from Azure portal 3](./deploy-zip-azure-portal-3.md)]| :::image type="content" source="../../media/quickstart-python/deploy-zip-azure-portal-build-3-240px.png" alt-text="A screenshot showing the location of the save button." lightbox="../../media/quickstart-python/deploy-zip-azure-portal-build-3.png"::: |
22
22
23
23
##### [Azure CLI](#tab/deploy-instructions-azcli)
24
24
25
25
Use the [az webapp config appsettings set](/cli/azure/webapp/config/appsettings#az-webapp-config-appsettings-set) command to set the `SCM_DO_BUILD_DURING_DEPLOYMENT` setting to a value of `true`.
@@ -72,10 +72,10 @@ In Postman, upload your file using the following steps.
72
72
73
73
| Instructions | Screenshot |
74
74
|:----------------|-----------:|
75
-
|[!INCLUDE [Postman upload step 1](<./deploy-zip-postman-1.md>)]| :::image type="content" source="../../media/quickstart-python/deploy-zip-postman-1-240px.png" alt-text="A screenshot showing how to create a new POST request in Postman." lightbox="../../media/quickstart-python/deploy-zip-postman-1.png"::: |
76
-
|[!INCLUDE [Postman upload step 2](<./deploy-zip-postman-2.md>)]| :::image type="content" source="../../media/quickstart-python/deploy-zip-postman-2-240px.png" alt-text="A screenshot showing how to configure basic authorization for a POST request in Postman." lightbox="../../media/quickstart-python/deploy-zip-postman-2.png"::: |
77
-
|[!INCLUDE [Postman upload step 3](<./deploy-zip-postman-3.md>)]| :::image type="content" source="../../media/quickstart-python/deploy-zip-postman-3-240px.png" alt-text="A screenshot showing how to select a file for a POST request in Postman." lightbox="../../media/quickstart-python/deploy-zip-postman-3.png"::: |
78
-
|[!INCLUDE [Postman upload step 4](<./deploy-zip-postman-4.md>)]| :::image type="content" source="../../media/quickstart-python/deploy-zip-postman-4-240px.png" alt-text="A screenshot showing how to send a POST request in Postman." lightbox="../../media/quickstart-python/deploy-zip-postman-4.png"::: |
75
+
|[!INCLUDE [Postman upload step 1](./deploy-zip-postman-1.md)]| :::image type="content" source="../../media/quickstart-python/deploy-zip-postman-1-240px.png" alt-text="A screenshot showing how to create a new POST request in Postman." lightbox="../../media/quickstart-python/deploy-zip-postman-1.png"::: |
76
+
|[!INCLUDE [Postman upload step 2](./deploy-zip-postman-2.md)]| :::image type="content" source="../../media/quickstart-python/deploy-zip-postman-2-240px.png" alt-text="A screenshot showing how to configure basic authorization for a POST request in Postman." lightbox="../../media/quickstart-python/deploy-zip-postman-2.png"::: |
77
+
|[!INCLUDE [Postman upload step 3](./deploy-zip-postman-3.md)]| :::image type="content" source="../../media/quickstart-python/deploy-zip-postman-3-240px.png" alt-text="A screenshot showing how to select a file for a POST request in Postman." lightbox="../../media/quickstart-python/deploy-zip-postman-3.png"::: |
78
+
|[!INCLUDE [Postman upload step 4](./deploy-zip-postman-4.md)]| :::image type="content" source="../../media/quickstart-python/deploy-zip-postman-4-240px.png" alt-text="A screenshot showing how to send a POST request in Postman." lightbox="../../media/quickstart-python/deploy-zip-postman-4.png"::: |
79
79
80
80
#### [cURL](#tab/deploy-instructions-zip-curl)
81
81
@@ -89,7 +89,7 @@ To use cURL to upload your ZIP file to Azure, you will need the deployment usern
89
89
90
90
Run the following `curl` command to upload your zip file to Azure and deploy your application. The username is the deployment username obtained in step 3. When this command is run, you will be prompted for the deployment password.
0 commit comments