Azure functions:
-
vscode
-
azure functions core tool
- Azure Functions CLI (v5)
- Azure Functions Core Tools (v4)
choco install azure-functions-core-tools -y
-
azure cli

Folder structure:
demo-azure-vm-control
- python
* _init_.py ==> python code and function handler
* function.json ==> build and trigger configuration
- requirment.txt - packages
- host.json - Gobal configuration
- local.setting.json - local enviroment variables
Function cli cheatsheet:
cheatsheet
- func init <function name> which will create file structure
- select runtime like java, nodejs, python, dotnet …etc
- func start – this run in your local.
