Install Azure Function Core Tools.
az login
All the resources required for the application will need to be created under specific subscription.
You can list subscriptions available for you by running:
az account list --output table
The above command will return table formatted list ouf sbuscriptions available for your account.
Start from creating resource group.
az group create --name serverless-todo-app --location eastus
Deploy ARM template
az deployment group create --resource-group serverless-todo-app --template-file AzureDeploy/azuredeploy.json --parameters AzureDeploy/azuredeploy.parameters.json
az group delete --name serverless-todo-app