Getting Started With Azure Functions - HTTP & Timer Triggers

38,487
0
Published 2023-01-20
Get the source code for this video for FREE → the-dotnet-weekly.ck.page/azure-functions
☄️ Master the Modular Monolith Architecture: bit.ly/3SXlzSt
📌 Accelerate your Clean Architecture skills: bit.ly/3PupkOJ
🚀 Support me on Patreon to access the source code: www.patreon.com/milanjovanovic

Azure Functions are a serverless computing offering on Azure. You can use them to deploy your code to the cloud, without having to provision or manage any infrastructure. Azure Functions run based on a trigger, and there are many to choose from. In this video, I will explore the HTTP and Timer triggers.

Join my weekly .NET newsletter:
www.milanjovanovic.tech/

Read my Blog here:
www.milanjovanovic.tech/blog

Subscribe for more:
   / @milanjovanovictech  

Chapters
0:00 Creating an Azure Functions project
1:52 Azure Functions with HttpTrigger
5:37 Configuring Azure Functions with hosts.json
6:04 Azure Functions local development with local.settings.json
7:01 Configuring middleware for Azure Functions
8:44 Configuring services for Azure Functions
9:08 Running Azure Functions application
11:20 Azure Functions with TimerTrigg

All Comments (21)
  • @longuinni
    Really nice video. It wiil be awesome if you create a serie with full architecture using azure functions.
  • @codester1989
    Fantastic introduction to Azure Functions + Triggers tutorial! Really like your pacing and editing. Well done!
  • @sadaqat4728
    wow superb Milan, very clear explanation in simple way. No time waste , just to the point. 👍
  • Dude you are amazing! Thanks a lot for this tutorial. Keep creating awesome content like this!
  • @roymartinez94
    Great, I used azure functions in a microservice infrastructure for 1 year and 5 months, are very strong, nice complexity and scalability
  • @subashbarik
    Nice video , this year please make more videos like this on Azure.
  • Watching this after recently using a azure functions for a couple of services at work. Nice introductory video. Had a unique requirement to create a functionality that should work on one of those functions. I created a middleware for this and used the "UseWhen" extension method to use the middleware only if a specific function is called. Keep up the good work.
  • @vamvdotnet
    Great video, Milan! If I may, I'd like to suggest creating other Azure Functions video tutorials in which you talk about real-world common scenarios where http triggers come in handy :) Thank you! Keep rockin'!
  • I recently used them (V4) for my backend APIs, they are very simple to implement and to deploy.