<?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: Alagunila Meganathan</title>
    <description>The latest articles on DEV Community by Alagunila Meganathan (@nilameganathan).</description>
    <link>https://dev.to/nilameganathan</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%2F134075%2Fdd87af58-2dbb-416e-a150-e6a66d1d8d35.jpg</url>
      <title>DEV Community: Alagunila Meganathan</title>
      <link>https://dev.to/nilameganathan</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/nilameganathan"/>
    <language>en</language>
    <item>
      <title>How to create Azure Function App in Azure Portal</title>
      <dc:creator>Alagunila Meganathan</dc:creator>
      <pubDate>Mon, 04 Feb 2019 10:07:53 +0000</pubDate>
      <link>https://dev.to/nilameganathan/how-to-create-azure-function-app-in-azure-portal-5b5k</link>
      <guid>https://dev.to/nilameganathan/how-to-create-azure-function-app-in-azure-portal-5b5k</guid>
      <description>

&lt;p&gt;How to create Azure Function App in Azure Portal&lt;/p&gt;

&lt;p&gt;This article helps you to learn how to create Azure Function App in Azure Portal.&lt;/p&gt;

&lt;p&gt;Azure Function Apps&lt;br&gt;
Azure functions is a solution for executing small lines of code or the functions in the Cloud.  We can also select the our programming languages, as per our desire. We  pay only for the time your code executes, that is Pay per use. Its support a variety of programming languages like C#, F#, Node.js, Python, PHP or Java. Its support continuous Deployment and Integration. Azure functions Applications let us develop Serverless Applications. Please refer official page of Azure Functions for more details&lt;/p&gt;

&lt;p&gt;Prerequisites&lt;br&gt;
• Microsoft Azure Account.&lt;br&gt;
Follow the below steps to create a Azure Function.&lt;br&gt;
Step 1&lt;br&gt;
Login to &lt;a href="https://portal.azure.com/"&gt;https://portal.azure.com/&lt;/a&gt;&lt;br&gt;
In the dashboard, choose to create a resource and click on compute. Now choose Function App,&lt;/p&gt;

&lt;p&gt;&lt;a href="https://thepracticaldev.s3.amazonaws.com/i/gu6ar65eqj2wl786vbbz.png"&gt;https://thepracticaldev.s3.amazonaws.com/i/gu6ar65eqj2wl786vbbz.png&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Click on Create&lt;/p&gt;

&lt;p&gt;&lt;a href="https://thepracticaldev.s3.amazonaws.com/i/faksq2c4f6gcdg6vobgb.png"&gt;https://thepracticaldev.s3.amazonaws.com/i/faksq2c4f6gcdg6vobgb.png&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Step 2&lt;/p&gt;

&lt;p&gt;Enter the name you want to assign to the logic, choose the subscription, and resource group where you organize related resources, Hosting Plan (This plan is based on the Executions and resource consumption. It also has a free monthly limit of 1 million requests and 4,00,000 GB-s (Gigabyte seconds) of resource consumption per month.) and location where your Function app is stored. Then, click on "Create".&lt;/p&gt;

&lt;p&gt;&lt;a href="https://thepracticaldev.s3.amazonaws.com/i/c8sl3wgllpp1daepew2i.png"&gt;https://thepracticaldev.s3.amazonaws.com/i/c8sl3wgllpp1daepew2i.png&lt;/a&gt;  &lt;/p&gt;

&lt;p&gt;Here is the dashboard. Click on Function App.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://thepracticaldev.s3.amazonaws.com/i/u9cgyb6hp3klebscho2q.png"&gt;https://thepracticaldev.s3.amazonaws.com/i/u9cgyb6hp3klebscho2q.png&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Step 3&lt;/p&gt;

&lt;p&gt;Create Function App&lt;br&gt;
• Now, click on the Function to create a new Function App.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://thepracticaldev.s3.amazonaws.com/i/czn5d1mj2cgvvdfo5t8w.png"&gt;https://thepracticaldev.s3.amazonaws.com/i/czn5d1mj2cgvvdfo5t8w.png&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;• Next, we have to Choose the Portal.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://thepracticaldev.s3.amazonaws.com/i/9bn7hz2kjfxzz23bfkgk.png"&gt;https://thepracticaldev.s3.amazonaws.com/i/9bn7hz2kjfxzz23bfkgk.png&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;• Next, we choose Webhook + API.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://thepracticaldev.s3.amazonaws.com/i/w6rutcj2d1ucaev11c8t.png"&gt;https://thepracticaldev.s3.amazonaws.com/i/w6rutcj2d1ucaev11c8t.png&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;• Next, we have an editor which preloads the run.csx file, where you can find a predefined method to be fired when the API is called. The "Run" button is used to build and execute the code and  "Save" button is used to save the changes done in the code editor&lt;/p&gt;

&lt;p&gt;&lt;a href="https://thepracticaldev.s3.amazonaws.com/i/h4l0osligk9sulsed68o.png"&gt;https://thepracticaldev.s3.amazonaws.com/i/h4l0osligk9sulsed68o.png&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Step 4&lt;br&gt;
Test the Function App&lt;/p&gt;

&lt;p&gt;• To test the app, we have an test functionality which is available in the right corner of the screen&lt;/p&gt;

&lt;p&gt;&lt;a href="https://thepracticaldev.s3.amazonaws.com/i/mw35h47dqonjomo33adi.png"&gt;https://thepracticaldev.s3.amazonaws.com/i/mw35h47dqonjomo33adi.png&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;• Click on Test.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://thepracticaldev.s3.amazonaws.com/i/dgc2zohckth7hc1sgeb0.png"&gt;https://thepracticaldev.s3.amazonaws.com/i/dgc2zohckth7hc1sgeb0.png&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;• We will have the output.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://thepracticaldev.s3.amazonaws.com/i/pe2o2k4yby4jfeh0lwc8.png"&gt;https://thepracticaldev.s3.amazonaws.com/i/pe2o2k4yby4jfeh0lwc8.png&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Step 5&lt;br&gt;
Run the Function App&lt;br&gt;
• Let us test the Azure Function app in the browser. Now we save and run the workflow and run it. Now click on the Get Function URL&lt;/p&gt;

&lt;p&gt;&lt;a href="https://thepracticaldev.s3.amazonaws.com/i/pb5keha2r3qwea333841.png"&gt;https://thepracticaldev.s3.amazonaws.com/i/pb5keha2r3qwea333841.png&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;• Copy the URL &lt;/p&gt;

&lt;p&gt;&lt;a href="https://thepracticaldev.s3.amazonaws.com/i/t0lv60w4m9br5bao6lpj.png"&gt;https://thepracticaldev.s3.amazonaws.com/i/t0lv60w4m9br5bao6lpj.png&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;• Paste on the browser with &amp;amp;name=Alagunila.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://thepracticaldev.s3.amazonaws.com/i/xe5noql10dl4xjc7meiv.png"&gt;https://thepracticaldev.s3.amazonaws.com/i/xe5noql10dl4xjc7meiv.png&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;• Output&lt;/p&gt;

&lt;p&gt;&lt;a href="https://thepracticaldev.s3.amazonaws.com/i/tt5jh2jtp7f7p4d8qh6m.png"&gt;https://thepracticaldev.s3.amazonaws.com/i/tt5jh2jtp7f7p4d8qh6m.png&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Summary&lt;br&gt;
I hope you understood how to create an Azure Function App between on portal. Stay tuned for more Azure Function App articles.&lt;/p&gt;


</description>
      <category>microsoftazure</category>
    </item>
  </channel>
</rss>
