From a083f6f060ebbdefce9a517efb702a8b3a25e0cb Mon Sep 17 00:00:00 2001 From: Argishti Rostamian <1332785+WhileLoop@users.noreply.github.com> Date: Mon, 12 Oct 2020 13:58:41 -0700 Subject: [PATCH] func: app page (#4536) --- pages/common/func.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 pages/common/func.md diff --git a/pages/common/func.md b/pages/common/func.md new file mode 100644 index 000000000..f2c303618 --- /dev/null +++ b/pages/common/func.md @@ -0,0 +1,29 @@ +# func + +> Azure Functions Core Tools: Develop and test Azure Functions locally. +> Local functions can connect to live Azure services, and can deploy a function app to an Azure subscription. +> More information: . + +- Create a new functions project: + +`func init {{project}}` + +- Create a new function: + +`func new` + +- Run functions locally: + +`func start` + +- Publish your code to a function app in Azure: + +`func azure functionapp publish {{function}}` + +- Download all settings from an existing function app: + +`func azure functionapp fetch-app-settings {{function}}` + +- Get the connection string for a specific storage account: + +`func azure storage fetch-connection-string {{storage_account}}`