Create serverless applications | Develop, test and publish Azure Functions by using Azure Functions Core tools Flashcards
1
Q
What are azure functions core tools?
A
The Azure Functions Core Tools are command line utilities that enable you to develop and run functions locally, and then publish them to Azure.
2
Q
What is the primary purpose of Azure Core Tools? (3)
A
- Generate the files and folders you need to develop functions on your local computer
- Run your functions locally so you can test and debug them
- Publish your functions to Azure
3
Q
Can you combine functions from multiple projects when using Core tools?
A
No. When you publish, any functions already present in the target app are stopped and deleted before the contents of your project are deployed.
4
Q
How to publish a function created with Core tools (locally) to azure?
A
You need to have a functionapp in place. After the function is created with Core tools, run the command func azure functionapp publish "$FUNCTIONAPP" in the directory of the function.