azurite --silent
az group create --name WebAppTest --location canadacentral
az storage account create
--name funcstore123unique
--location canadacentral
--resource-group WebAppTest
--sku Standard_LRS
az functionapp plan create
--resource-group WebAppTest
--name WebAppTestPlan
--location canadacentral
--number-of-workers 1
--sku EP1
--is-linux true
az functionapp create
--resource-group WebAppTest
--plan WebAppTestPlan
--runtime python
--runtime-version 3.11
--functions-version 4
--name WebAppTestFuncApp
--os-type linux
--storage-account funcstore123unique
zip -r function_app.zip .
az functionapp deployment source config-zip
--resource-group WebAppTest
--name WebAppTestFuncApp
--src function_app.zip