1 min read
Implement task processing logic by using Azure Functions Part 1 – Create a storage account and function app
Now in this lab 02 scenario here from Microsoft we will create an Azure function.
Create the storage account
#create an azure storage
az storage account create --name az204lab02storage \
-g 02lab-rg
--access-tier Hot
--sku Standard_LRS --kind StorageV2

Go into the portal and create a new functionapp.

There you go! In the next part we’ll configure a local environment for Azure Functions.