A company is developing a Java web app. The web app code is hosted in a GitHub repository located at https://github.com/Contoso/webapp.
The web app must be evaluated before it is moved to production. You must deploy the initial code release to a deployment slot named staging.
You need to create the web app and deploy the code.
How should you complete the commands? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.
Hot Area:
Correct Answer:
Box 1: group –
# Create a resource group.
az group create –location westeurope –name myResourceGroup
Box 2: appservice plan –
# Create an App Service plan in STANDARD tier (minimum required by deployment slots). az appservice plan create –name $webappname –resource-group myResourceGroup –sku S1
Box 3: webapp –
# Create a web app.
az webapp create –name $webappname –resource-group myResourceGroup \
–plan $webappname
Box 4: webapp deployment slot –
#Create a deployment slot with the name "staging".
az webapp deployment slot create –name $webappname –resource-group myResourceGroup \
–slot staging
Box 5: webapp deployment source –
# Deploy sample code to "staging" slot from GitHub.
az webapp deployment source config –name $webappname –resource-group myResourceGroup \
We use cookies on our website to give you the most relevant experience by remembering your preferences and repeat visits. By clicking “Accept”, you consent to the use of ALL the cookies.
This website uses cookies to improve your experience while you navigate through the website. Out of these, the cookies that are categorized as necessary are stored on your browser as they are essential for the working of basic functionalities of the website. We also use third-party cookies that help us analyze and understand how you use this website. These cookies will be stored in your browser only with your consent. You also have the option to opt-out of these cookies. But opting out of some of these cookies may affect your browsing experience.
Necessary cookies are absolutely essential for the website to function properly. This category only includes cookies that ensures basic functionalities and security features of the website. These cookies do not store any personal information.
Any cookies that may not be particularly necessary for the website to function and is used specifically to collect user personal data via analytics, ads, other embedded contents are termed as non-necessary cookies. It is mandatory to procure user consent prior to running these cookies on your website.