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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is the primary purpose of Azure Core Tools? (3)

A
  1. Generate the files and folders you need to develop functions on your local computer
  2. Run your functions locally so you can test and debug them
  3. Publish your functions to Azure
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly