<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[digitamscloud]]></title><description><![CDATA[digitamscloud]]></description><link>https://digitamscloud.hashnode.dev</link><generator>RSS for Node</generator><lastBuildDate>Wed, 23 Sep 2026 09:25:59 GMT</lastBuildDate><atom:link href="https://digitamscloud.hashnode.dev/rss.xml" rel="self" type="application/rss+xml"/><language><![CDATA[en]]></language><ttl>60</ttl><item><title><![CDATA[AZUR ESSENTIALS 2025: Creating an Azure App service. A step-by-step guide with screen shots.]]></title><description><![CDATA[What is an Azure App Service Plan:
an App Service plan is what is needed to run a Web App on Azure Cloud. It is the set of resources needed for a web application to run.
STEP 1. Prerequisite to creating Azure App Service:
In this project AZURE CLI wi...]]></description><link>https://digitamscloud.hashnode.dev/azur-essentials-2025-creating-an-azure-app-service-a-step-by-step-guide-with-screen-shots</link><guid isPermaLink="true">https://digitamscloud.hashnode.dev/azur-essentials-2025-creating-an-azure-app-service-a-step-by-step-guide-with-screen-shots</guid><category><![CDATA[Azure]]></category><category><![CDATA[APIs]]></category><category><![CDATA[app development]]></category><category><![CDATA[2025 technology trends]]></category><category><![CDATA[Cloud]]></category><category><![CDATA[Cloud Computing]]></category><category><![CDATA[azure-devops]]></category><category><![CDATA[Azure CLI]]></category><dc:creator><![CDATA[Stanley Noah Tams]]></dc:creator><pubDate>Thu, 03 Jul 2025 14:14:28 GMT</pubDate><enclosure url="https://cdn.hashnode.com/res/hashnode/image/upload/v1751549276283/55f72b96-248c-490f-9148-0b54463610e5.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<h2 id="heading-what-is-an-azure-app-service-plan">What is an Azure App Service Plan:</h2>
<p>an App Service plan is what is needed to run a Web App on Azure Cloud. It is the set of resources needed for a web application to run.</p>
<h2 id="heading-step-1-prerequisite-to-creating-azure-app-service">STEP 1. Prerequisite to creating Azure App Service:</h2>
<p>In this project AZURE CLI will be used, so you will need to install that on your PC.</p>
<p>A) Install Azure CLI</p>
<p>B) Create a Github account if you do not have one already, the create your Repository to hold your web application file already created.</p>
<p>C) Push your web file to Github repository</p>
<h2 id="heading-stepe-2-log-int0-azure-account-through-powershell">STEPE 2: LOG INT0 AZURE ACCOUNT THROUGH POWERSHELL</h2>
<p>A) On your windows search box type PowerShell and open the Powershell command Prompt.</p>
<p>B) On the prompt type <strong>az login</strong> to log in to your Azure account</p>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1751550741282/a536d08f-890f-48a2-a113-37f2c3db56a9.png" alt class="image--center mx-auto" /></p>
<p>C) A new window Prompt will appear for you to choose the account, click the account and the continue button</p>
<p>D) the Screenshot below shows you have successfully logged into your Azure account.</p>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1751549355696/855f6918-ac5e-40cf-9ae4-79cc60b0a31b.png" alt class="image--center mx-auto" /></p>
<h2 id="heading-step-3-create-your-resource-group">STEP 3: CREATE YOUR RESOURCE GROUP</h2>
<p>the first thing after logging in is to create your resource group. Resource group is what houses your web App and your App Service plan.</p>
<p>Use the command below:</p>
<p><strong>az group create —name</strong> [give your resource group a name] <strong>—location</strong> [write the location name you want your resource group to be e.g. uksouth]; Note the paces and the double “dash” in the syntax. Press <strong>Enter</strong></p>
<p><strong><em>see screen shot:</em></strong></p>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1751550786029/65f6a989-46ad-4d63-9587-4dc18305f8d2.png" alt class="image--center mx-auto" /></p>
<h2 id="heading-step-4-create-your-app-service-plan"><strong>STEP 4: CREATE YOUR APP SERVICE PLAN</strong></h2>
<p>The App Service plan is the <strong>Virtual machine, VM</strong> on which the App runs, this comprises the Computer resources your Web App needs to run. for example the CPU, Memory and storage, APIs and mobile backends on Azure. The App Service plan makes it possible that the web runs seemlessly irrespective of the technology used, be it Python, PHP, Node.js, .Net etc.</p>
<p><strong><em>Use the command below:</em></strong></p>
<p><strong>az appservice plan create —name</strong> [name your appservice plan] <strong>—resource-group</strong> [your resource group name] and press <strong>Enter</strong></p>
<p><strong><em>see screen shot:</em></strong></p>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1751550873051/16ea0aca-3fa1-4d8a-a053-dc19ddf2b9bf.png" alt class="image--center mx-auto" /></p>
<p>At this point if your Azure account is New, you might encounter this error message (<strong><em>see screen shot</em></strong>)</p>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1751550852062/9a593127-ce7a-40ec-b60f-2fabbc8867aa.png" alt class="image--center mx-auto" /></p>
<p>If so, go to your Azure account (GUI)</p>
<p>a) Search and Click on Subscriptions</p>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1751551046751/702ea057-8614-476a-bdc2-ad04b66b7bab.png" alt class="image--center mx-auto" /></p>
<p>b) Click on your subscription name</p>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1751550928658/ce43871c-abed-4a01-ac91-1034c9ccd620.png" alt class="image--center mx-auto" /></p>
<p>c) On the left pane click on settings</p>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1751551075803/512885cd-6176-480e-abbe-66cbdc5a5594.png" alt class="image--center mx-auto" /></p>
<p>d) Navigate to Resource providers and click on it</p>
<p>e) On the search box type <strong><em>microsoft.web or web</em></strong></p>
<p><strong><em>see Screen shots:</em></strong></p>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1751551303508/0c2140c6-79a5-4261-8db5-ea6280457e44.png" alt class="image--center mx-auto" /></p>
<p>f) select the radio button and click register to register the resources</p>
<p><em>Go back to PowerShell terminal and repeat</em> <strong><em>STEP 4</em></strong></p>
<h2 id="heading-step-5-create-your-web-application"><strong>STEP 5 CREATE YOUR WEB APPLICATION</strong></h2>
<p>Once your App Service plan have been successfully created the next step is to create your web application.</p>
<p><strong><em>Use the command below:</em></strong></p>
<p><strong>az webapp create —name</strong> [name your web app] <strong>—resource-group</strong> [your resource group name] <strong>—plan</strong> [ your App service plan name]</p>
<p><strong><em>see Screen shot:</em></strong></p>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1751551386164/d2759f49-7309-446f-bd21-9c94641b2551.png" alt class="image--center mx-auto" /></p>
<p>Your Web App is ready waiting for Deployment</p>
<h2 id="heading-step-6-copy-the-https-url-of-your-webapp-repository-in-github">STEP 6: COPY THE HTTPS URL OF YOUR WEBAPP REPOSITORY IN GITHUB</h2>
<p>One of the Prerequisite of this project is that you already have a https file in a Github repository. this is the time to get it.</p>
<p>On your Github account navigate to your web app repository page and click on the (arrow-down) green button labelled <strong>Code</strong> and copy the url link of your repository.</p>
<p><strong><em>see screen shot:</em></strong></p>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1751551573697/aed987f8-3e31-4275-b1e4-3d664a757957.png" alt class="image--center mx-auto" /></p>
<h2 id="heading-step-7-deploy-your-web-app">STEP 7: DEPLOY YOUR WEB APP</h2>
<p>a) After copying the web App repository url the next is to configure the deployment source of the Web App</p>
<p><strong><em>Use the following command</em></strong>.</p>
<p><strong>az webapp deployment source config —name</strong> [name of your web app] <strong>—resource-group</strong> [name of your resource group] <strong>—repo-url</strong> [paste url you copied from your Github] <strong>—branch masster —manual-integration</strong></p>
<p><strong><em>See Screen shot:</em></strong></p>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1751551652036/b90879d3-546c-4501-9352-910d2d06a526.png" alt class="image--center mx-auto" /></p>
<p>b) To view your Web App, navigate to AppServices on your Azure portal, click on your App name</p>
<p><strong><em>see screen shot:</em></strong></p>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1751551731999/5532118b-ee41-4e96-adfa-7d5985cf698f.png" alt class="image--center mx-auto" /></p>
<p>click on default domain link to view domain</p>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1751551775245/47ce5845-0d88-4df7-82ca-d97da8316583.png" alt class="image--center mx-auto" /></p>
<p>Here is your default domain reflecting your web file saved in Github.</p>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1751551814846/7be4bd82-bed4-44dd-ae8a-cbf02ae9858f.png" alt class="image--center mx-auto" /></p>
<p>Note: Only Indext.html file was used for this project. The process is the same if a full web page is pushed to the Github repository.</p>
]]></content:encoded></item></channel></rss>