We have been learning about different techniques for developing Azure Functions and deploying them to the cloud.
As you might already be aware, each function app can have multiple functions hosted in it. All the code related to those functions will be located in the D:\home\site\wwwroot folder, as follows:
D:\home\site\wwwroot is the location where the runtime looks for binaries and all configuration files that are required to execute the application.
In this recipe, we will learn about another new technique, called Run From Package (earlier called Run From Zip) to deploy the Azure Function as a package.
Using Run From Package, we can change the default location to an external storage account.