Skip to content
This repository was archived by the owner on Nov 14, 2020. It is now read-only.

Commit b83b3cf

Browse files
Update README.md
1 parent 46d0dc6 commit b83b3cf

File tree

1 file changed

+14
-7
lines changed

1 file changed

+14
-7
lines changed

README.md

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ After cloning the repository, we have 3 options to create our Azure Function:
7777
4. In the **Pick a publish target** window, select the following:
7878

7979
- **Azure Functions Consumption Plan**
80-
- [x] **Create New**
80+
- [x] **Create New**
8181

8282
5. In the **Pick a publish target** window, select **Publish**
8383

@@ -135,7 +135,8 @@ After cloning the repository, we have 3 options to create our Azure Function:
135135
- **Resource Group**
136136
- Click the **+** symbol
137137
- XamarinAzureChallenge
138-
- **Service Plan:** Custom
138+
- **Service Plan:**
139+
- [x] Custom
139140
- **Plan Name:** XamarinAzureChallenge
140141
- **Region:** [Select the Azure Data Center Closest to you]
141142
- **Pricing:** Consumption
@@ -146,11 +147,12 @@ After cloning the repository, we have 3 options to create our Azure Function:
146147

147148
8. In the **Configure Storage Account** window, enter the following information:
148149

149-
- **Storage Account:** Custom
150-
- **Account Name** xamarinazure[Your Name]
150+
- **Storage Account:**
151+
- [x] Custom
152+
- **Account Name:** xamarinazure[Your Name]
151153
- **Note:** Replace `[Your Name]` with your name to ensure the Storage Account Name is unique
152154
- In this example, I'm using "xamarinazurebrandon"
153-
- **Account Type** Standard - Locally Redundant Storage
155+
- **Account Type:** Standard - Locally Redundant Storage
154156

155157
9. In the **Configure Storage Account** window, select **Create**
156158

@@ -172,7 +174,9 @@ After cloning the repository, we have 3 options to create our Azure Function:
172174

173175
#### 2c. Use Azure CLI
174176

175-
> As a prerequisite, you must install [Azure Core Tools version 2.x](https://docs.microsoft.com/azure/azure-functions/functions-run-local?WT.mc_id=xamarinazurechallenge-github-bramin#v2), [Azure CLI](https://docs.microsoft.com/cli/azure/install-azure-cli?WT.mc_id=xamarinazurechallenge-github-bramin) and [Azure Cloud Shell](https://shell.azure.com/bash?WT.mc_id=xamarinazurechallenge-github-bramin).
177+
> As a prerequisite, you must install [Azure Core Tools version 2.x](https://docs.microsoft.com/azure/azure-functions/functions-run-local?WT.mc_id=xamarinazurechallenge-github-bramin#v2) and [Azure CLI](https://docs.microsoft.com/cli/azure/install-azure-cli?WT.mc_id=xamarinazurechallenge-github-bramin).
178+
>
179+
> Alternatively, if you do not wish to install these tools locally, you can use these CLI tools pre-installed in a browser via the [Azure Cloud Shell](https://shell.azure.com/bash?WT.mc_id=xamarinazurechallenge-github-bramin).
176180
177181
1. Open the terminal
178182
- [How to open the macOS Terminal](https://macpaw.com/how-to/use-terminal-on-mac)
@@ -185,7 +189,7 @@ az login
185189
```
186190
> **Note:** Stand by until the Azure CLI opens your browser to the Azure Login page
187191
188-
3. In the automatically-opened browser window, in the Azure Login page, log into your Azure Account
192+
3. In the automatically-opened browser window, on the Azure Login page, log into your Azure Account
189193

190194
4. In the terminal, enter the following command to create a new Azure Resource Group:
191195

@@ -203,6 +207,7 @@ az group create --name XamarinAzureChallenge --location westeurope
203207
az storage account create --name xamarinazure[Your Name] --location westeurope --resource-group XamarinAzureChallenge --sku Standard_LRS
204208
```
205209
> **Note:** Replace `[Your Name]` with your name to ensure the storage name is unique
210+
>
206211
> **Note:** If you have more than one subscription you will need to especify the subscription in which the resource group will be created using `--subscription [your Azure Subscription ID]`
207212
>
208213
> [How to find your Azure Subscription ID ](https://blogs.msdn.microsoft.com/mschray/2016/03/18/getting-your-azure-subscription-guid-new-portal?WT.mc_id=xamarinazurechallenge-github-bramin)
@@ -213,7 +218,9 @@ az storage account create --name xamarinazure[Your Name] --location westeurope -
213218
az functionapp create --resource-group XamarinAzureChallenge --consumption-plan-location westeurope --name XamarinAzureChallenge-[Your Name] --storage-account xamarinazure[Your Name] --runtime dotnet
214219
```
215220
> **Note:** Replace `[Your Name]` with your name to ensure the functionapp name is unique
221+
>
216222
> **Note:** For `--storage-account`, use the storage account created in the previous step
223+
>
217224
> **Note:** If you have more than one subscription you will need to especify the subscription in which the resource group will be created using `--subscription [your Azure Subscription ID]`
218225
>
219226
> [How to find your Azure Subscription ID ](https://blogs.msdn.microsoft.com/mschray/2016/03/18/getting-your-azure-subscription-guid-new-portal?WT.mc_id=xamarinazurechallenge-github-bramin)

0 commit comments

Comments
 (0)