1 Star 0 Fork 0

Ewindiors/CarChecker

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
deploy.json 2.68 KB
一键复制 编辑 原始数据 按行查看 历史
Tim Heuer 提交于 2020-07-03 09:30 . Adding CI and fixing up a readme (#1)
{
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"webAppName": {
"type": "string",
"defaultValue": "[concat('BlazorApp-', uniqueString(resourceGroup().id))]",
"metadata":{
"description": "That name is the name of our application. It has to be unique. Type a name followed by your resource group name. (<name>-<resourceGroupName>)"
}
},
"location": {
"type": "string",
"defaultValue": "[resourceGroup().location]",
"metadata":{
"description": "Location for all resources."
}
}
},
"variables": {
"alwaysOn": false,
"sku": "Free",
"skuCode": "F1",
"workerSize": "0",
"workerSizeId": 0,
"numberOfWorkers": "1",
"currentStack": "dotnetcore",
"netFrameworkVersion": "v4.0",
"hostingPlanName": "[concat('hpn-', resourceGroup().name)]"
},
"resources": [
{
"apiVersion": "2018-02-01",
"name": "[parameters('webAppName')]",
"type": "Microsoft.Web/sites",
"location": "[parameters('location')]",
"dependsOn": [
"[resourceId('Microsoft.Web/serverfarms/', variables('hostingPlanName'))]"
],
"properties": {
"name": "[parameters('webAppName')]",
"siteConfig": {
"metadata": [
{
"name": "CURRENT_STACK",
"value": "[variables('currentStack')]"
}
],
"netFrameworkVersion": "[variables('netFrameworkVersion')]",
"alwaysOn": "[variables('alwaysOn')]"
},
"serverFarmId": "[resourceId('Microsoft.Web/serverfarms', variables('hostingPlanName'))]",
"clientAffinityEnabled": true
}
},
{
"apiVersion": "2018-02-01",
"name": "[variables('hostingPlanName')]",
"type": "Microsoft.Web/serverfarms",
"location": "[parameters('location')]",
"properties": {
"name": "[variables('hostingPlanName')]",
"workerSize": "[variables('workerSize')]",
"workerSizeId": "[variables('workerSizeId')]",
"numberOfWorkers": "[variables('numberOfWorkers')]"
},
"sku": {
"Tier": "[variables('sku')]",
"Name": "[variables('skuCode')]"
}
}
]
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ewindiors/CarChecker.git
[email protected]:ewindiors/CarChecker.git
ewindiors
CarChecker
CarChecker
master

搜索帮助