所以我遵循本指南,以便使Azure 2.0 CLI创建要部署的应用服务。
https://docs.microsoft.com/en-us/azure/app-service-web/app-service-web-get-started
我已经设置了资源组,应用服务计划和应用,但没有使用像这样的Git存储库设置部署
az appservice web source-control config-local-git --name <app_name> --resource-group my-first-app-group
我想将所有文件放入DropBox中的文件夹中。
此步骤可以通过使用Azure网站完成,但我想知道是否可以使用Azure 2.0 CLI?如果是,命令是什么?
答案 0 :(得分:0)
我想将所有文件放入DropBox中的文件夹中。 这一步可以通过使用Azure网站完成,但我想 知道是否可以使用Azure 2.0 CLI?
我们可以使用这样的CLI 2.0命令:
C:\Users>az appservice web source-control config --repo-url https://www.dropbox.com/sh/ar7n31ozqgchnb2/AABxdZN4v4pklk3USCnFBWdVa?dl=0 --repository-type mercurial --name jasonapp2 --resource ubuntu
这是我的结果:
C:\Users>az appservice web source-control config --repo-url https://www.dropbox.com/sh/ar7n31ozqgchnb2/AABxdZN4v4pklk3USCnFBWdVa?dl=0 --repository-type mercurial --name jasonapp2 --resource ubuntu
{
"branch": null,
"deploymentRollbackEnabled": false,
"id": "/subscriptions/5384xxxx-xxxx-xxxx-xxxx-0361e29a7b15/resourceGroups/ubuntu/providers/Microsoft.Web/sites/jasonapp2/sourcecontrols/web",
"isManualIntegration": false,
"isMercurial": false,
"kind": null,
"location": "Central US",
"name": "jasonapp2",
"repoUrl": "https://www.dropbox.com/sh/ar7n31ozqgchnb2/AABxdZN4v4pklk3USCnFBWdVa?dl=0",
"resourceGroup": "ubuntu",
"tags": {
"hidden-related:/subscriptions/5384xxxx-xxxx-xxxx-xxxx-0361e29a7b15/resourcegroups/AppResource/providers/Microsoft.Web/serverfarms/palian160919": "empty"
},
"type": "Microsoft.Web/sites/sourcecontrols"
}