cloud
-
For a while I’ve been working on automation inside of Azure, and a big part of that is using Azure’s REST API or the Microsoft Graph’s API. Now Microsoft does provide documentation on different APIs but it’s sometimes hard to understand the documentation and often takes a lot of time. I was curious one day…
-
Azure Functions is a serverless compute service in Azure which lets you run event-triggered code without managing infrastructure. It is used for lightweight, single-purpose tasks. Azure Functions charges only for the compute time used. This service is ideal for scenarios where you would like to respond to events or perform background tasks without needing a…
-
A while ago I had to create a Flask application and was a bit stuck on how to deploy it to Azure App Service. I thought it would be difficult with a bunch of code being needed to be changed prior to deployment, but it ended up being incredibly easy – I just missed a…