From 890f6095427ab80dd313f65da86084bb9dc5808c Mon Sep 17 00:00:00 2001 From: zedy Date: Tue, 28 Mar 2023 09:40:23 +0800 Subject: [PATCH] correct readme --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 3caeab2..7dd7726 100644 --- a/README.md +++ b/README.md @@ -63,7 +63,7 @@ powershell -ex AllSigned -c "Invoke-RestMethod 'https://aka.ms/install-azd.ps1' curl -fsSL https://aka.ms/install-azd.sh | bash ``` -And you can also install with package managers, like winget, choco, and brew. For more detials, you can follow the documentation: https://aka.ms/azure-dev/install. +And you can also install with package managers, like winget, choco, and brew. For more details, you can follow the documentation: https://aka.ms/azure-dev/install. After logging in with the following command, you will be able to use the azd cli to quickly provision and deploy the application. @@ -71,12 +71,12 @@ After logging in with the following command, you will be able to use the azd cli azd login ``` -Then, executes the commands `azd init` to initializes environment. +Then, execute the `azd init` command to initialize the environment. ``` azd init -t dotnet-architecture/eShopOnWeb ``` -And executes the commands `azd up` to complete all operations of provision and deployment. +Run `azd up` to provision all the resources to Azure and deploy the code to those resources. ``` azd up ```