diff --git a/README.md b/README.md index 35bd4d4..63ecb13 100644 --- a/README.md +++ b/README.md @@ -1,13 +1,16 @@ # Health Bot Container -A simple web page that allows users to communicate with the [Microsoft Health Bot service](https://www.microsoft.com/en-us/research/project/health-bot/) through a WebChat. +A simple web page that allows users to communicate with the [Microsoft Healthcare Bot service](https://www.microsoft.com/en-us/research/project/health-bot/) through a WebChat. -**Note:** In order to use this Web Chat with the Health Bot service, you will need to obtain your Web Chat secret by going to ["Integration/Secrets"](./secrets.png) on the navigation panel. +**Note:** In order to use this Web Chat with the Health Bot service, you will need to obtain your Web Chat secret by going to `Integration/Secrets` on the navigation panel. +

+ +

1.Deploy the website: -[![Deploy to Azure](https://azuredeploy.net/deploybutton.png)](https://azuredeploy.net/) +[![Deploy to Azure](https://aka.ms/deploytoazurebutton)](https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2Fmicrosoft%2FHealthBotContainerSample%2Flive_agent_handoff%2Fazuredeploy.json) Note: It is recommended you use the default Linux host type when deploying the container. However, if you wish to enable online file editing using the App Service Editor, select 'Windows'. diff --git a/azuredeploy.json b/azuredeploy.json index 1f750fe..623ef10 100644 --- a/azuredeploy.json +++ b/azuredeploy.json @@ -4,7 +4,7 @@ "parameters": { "siteName": { "type": "string", - "defaultValue": "[concat('HealthBot', uniqueString(resourceGroup().name, utcNow('F')))]", + "defaultValue": "[concat('healthcare-bot-', uniqueString(utcNow('F')))]", "metadata":{ "description": "Web site name. Has to be unique." @@ -42,6 +42,7 @@ }, "siteLocation": { "type": "string", + "defaultValue": "[resourceGroup().location]", "metadata":{ "description": "Location for all resources." } @@ -59,10 +60,18 @@ } }, "repoUrl": { - "type": "string" + "type": "string", + "defaultValue": "https://github.com/microsoft/HealthBotContainerSample.git", + "metadata": { + "description": "The URL for the GitHub repository that contains the project to deploy." + } }, "branch": { - "type": "string" + "type": "string", + "defaultValue": "live_agent_handoff", + "metadata": { + "description": "The branch of the GitHub repository to use." + } } }, "variables":{