<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Femi Somuyiwa</title>
    <description>The latest articles on DEV Community by Femi Somuyiwa (@danielfemi).</description>
    <link>https://dev.to/danielfemi</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F641451%2Ff3161d53-6341-4d70-88c8-064d9743585b.png</url>
      <title>DEV Community: Femi Somuyiwa</title>
      <link>https://dev.to/danielfemi</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/danielfemi"/>
    <language>en</language>
    <item>
      <title>Installing Azure CLI on Windows locally</title>
      <dc:creator>Femi Somuyiwa</dc:creator>
      <pubDate>Tue, 17 May 2022 06:04:03 +0000</pubDate>
      <link>https://dev.to/danielfemi/installing-azure-cli-on-windows-locally-553c</link>
      <guid>https://dev.to/danielfemi/installing-azure-cli-on-windows-locally-553c</guid>
      <description>&lt;p&gt;The Azure Command-Line Interface (CLI) is a cross-platform command-line tool that can be installed locally on Windows computers. Connecting to Azure and executing commands on Azure resources can be done using the Azure CLI for Windows. Through the Azure Cloud Shell, Microsoft Azure CLI for Windows can also be used from a browser or running inside a Docker container. Further, Azure CLI can also be accessed via command prompt, a familiar interface for most people.&lt;/p&gt;

&lt;p&gt;The goal of this article is to walk you through how to install the Azure CLI locally on a Windows computer. You will use the PowerShell environment to do this. The installation is global, hence Azure CLI can be used locally either from PowerShell or command prompt (CMD).&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Start PowerShell as administrator&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--jOY_ksOk--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/0w5h0k6lztc55pkjbyif.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--jOY_ksOk--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/0w5h0k6lztc55pkjbyif.png" alt="first" width="880" height="403"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Then &lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--0mtOkAVo--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/bp3ugcisrsjfthkavqps.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--0mtOkAVo--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/bp3ugcisrsjfthkavqps.png" alt="second" width="859" height="384"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;copy this code into the powershell and press enter:&lt;br&gt;
 &lt;strong&gt;$ProgressPreference = 'SilentlyContinue'; Invoke-WebRequest -Uri &lt;a href="https://aka.ms/installazurecliwindows"&gt;https://aka.ms/installazurecliwindows&lt;/a&gt; -OutFile .\AzureCLI.msi; Start-Process msiexec.exe -Wait -ArgumentList '/I AzureCLI.msi /quiet'; rm .\AzureCLI.msi&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--ylL8y-Wt--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/fsykbe0qa3qi6i9d0isk.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--ylL8y-Wt--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/fsykbe0qa3qi6i9d0isk.png" alt="third" width="859" height="721"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;It will take little time to run, so be patient.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;After installing of the above, Start up the powershell again but not necessarily as admin and then type:  &lt;strong&gt;az&lt;/strong&gt;
&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--pOMzxq_6--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/wrhf6vn8qdo38xptiagy.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--pOMzxq_6--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/wrhf6vn8qdo38xptiagy.png" alt="fourth" width="859" height="721"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Go to CMD to confirm if the installation is global, type: &lt;strong&gt;az&lt;/strong&gt;
&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--mWjf2LgX--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/ubyg6d2imgyo7ip3klik.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--mWjf2LgX--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/ubyg6d2imgyo7ip3klik.png" alt="fifth" width="880" height="460"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;To create blob storage using Azure CLI, I planned to provide instructions, but it was necessary to install Azure CLI locally on a Windows computer before I could proceed. Keep an eye out for the next blog, you will be right if you guessed that it deals with creating Blob Storage using Azure CLI.&lt;/p&gt;

&lt;p&gt;Thanks for sharing!&lt;/p&gt;

</description>
      <category>azure</category>
      <category>cli</category>
      <category>cloud</category>
      <category>blob</category>
    </item>
    <item>
      <title>Azure App Services #1</title>
      <dc:creator>Femi Somuyiwa</dc:creator>
      <pubDate>Mon, 16 May 2022 05:35:06 +0000</pubDate>
      <link>https://dev.to/danielfemi/azure-app-services-1-2dj0</link>
      <guid>https://dev.to/danielfemi/azure-app-services-1-2dj0</guid>
      <description>&lt;p&gt;Azure App Service is a web application, REST API, and mobile back end hosting service that runs on HTTP. You can code in any language you like, including ASP.NET,.NET Core, Java, Ruby, Node.js, PHP, or Python. Both Windows and Linux-based systems make it easy to run and scale applications.&lt;/p&gt;

&lt;p&gt;App Service not only adds the security, load balancing, autoscaling, and automated management features of Microsoft Azure to your application. It also has DevOps features including continuous deployment via Azure DevOps, GitHub, Docker Hub, and other sources, package management, staging environments, custom domains, and TLS/SSL certificates.&lt;/p&gt;

&lt;p&gt;You pay for the Azure compute resources you utilize with App Service. The App Service plan that you choose determines the computational resources you use.&lt;/p&gt;

&lt;p&gt;Navigating your way to App Serivces on Azure Portal&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;The first thing to do after logging in your azure platform at portal.azure.com&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--CPGewOIm--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/zomxy1q4onxgeomc8w0a.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--CPGewOIm--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/zomxy1q4onxgeomc8w0a.png" alt="A guide to navigating your way on Azure portal" width="880" height="366"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;In creating your first app service....&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--20cOjME7--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/iql6qbys4yswnskd560k.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--20cOjME7--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/iql6qbys4yswnskd560k.png" alt="Creating your app service" width="880" height="374"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Watch out for the continuation.&lt;/p&gt;

</description>
      <category>paas</category>
      <category>iaas</category>
      <category>webapp</category>
      <category>azure</category>
    </item>
  </channel>
</rss>
