reference:
https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#v2
https://docs.microsoft.com/en-us/azure/azure-functions/functions-create-first-function-python
create project
func init PythonAzure
create azure function
func new
Test
func host test
create resource group
az group create --name mareartstest --location westeurope
create strage account
az storage account create --name mareartsteststorage --location westeurope --resource-group mareartstest --sku Standard_LRS
create app
az functionapp create --resource-group mareartstest --os-type Linux --consumption-plan-location westeurope --runtime python --name mareartstest --storage-account mareartsteststorage
deploy
func azure functionapp publish mareartstest
No comments:
Post a Comment