commands Flashcards

1
Q

Create a resource group.

A

az group create –location westeurope –name myResourceGroup

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Create an App Service plan in FREE tier.

A

az appservice plan create –name $webappname –resource-group myResourceGroup –sku FREE

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Create a web app.

A

az webapp create –name $webappname –resource-group myResourceGroup –plan $webappname

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Deploy code from a public GitHub repository.

A

az webapp deployment source config –name $webappname –resource-group myResourceGroup \
–repo-url $gitrepo –branch master –manual-integration

How well did you know this?
1
Not at all
2
3
4
5
Perfectly