Skip to content

Commit a5b25a0

Browse files
author
Jesper Orb
authored
Merge pull request #6 from pathmapper/pathmapper-patch-1
Update instructions for Azure
2 parents 8b98cb1 + 9978332 commit a5b25a0

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ The **pros** are that on _Azure_ the app **will not be forced to sleep**. It wil
140140
## Installation
141141

142142
1 . Create a Microsoft Account that you can use on Azure: </br>
143-
https://azure.microsoft.com/sv-se/
143+
https://azure.microsoft.com/
144144

145145
2 . Install the `azure-cli`: <br/>
146146
https://docs.microsoft.com/en-us/cli/azure/install-azure-cli
@@ -171,13 +171,13 @@ az appservice plan create -n NameOfServicePlan -g NameOfResourceGroup
171171

172172
4 . Create the actual app and supply the service plan and resource group
173173
```bash
174-
az appservice web create -n NameOfApp -g NameOfResourceGroup --plan NameOfServicePlan
174+
az webapp create -n NameOfApp -g NameOfResourceGroup --plan NameOfServicePlan
175175
```
176176

177177
5 . Create deployment details. A git-repo is not created automatically so we have to create it with a command:
178178

179179
```bash
180-
az appservice web source-control config-local-git -g NameOfApp -g NameOfResourceGroup
180+
az webapp deployment source config-local-git -n NameOfApp -g NameOfResourceGroup
181181
```
182182

183183
6 . From the command in step 5 you should get a **url** in return. Copy this url and add it as a remote to your local git project, for example:
@@ -193,4 +193,5 @@ git push azure master
193193

194194
You should be prompted to supply a password, this should be the pass to your account. If not, you can choose a different password at your Dashboard for Azure: **[https://portal.azure.com/](https://portal.azure.com/)**
195195

196-
Choose **App Services** in the sidebar to the left and the choose your app in the list that appears then go to **Deployment Credentials** to change your password for deployment.
196+
Choose **App Services** in the sidebar to the left and the choose your app in the list that appears then go to **Deployment Credentials** to change your password for deployment:<br>
197+
https://docs.microsoft.com/en-us/azure/app-service/app-service-deployment-credentials

0 commit comments

Comments
 (0)