LinuxCommandLibrary

func

Azure Functions Core Tools: Develop and test Azure Functions locally.

TLDR

Create a new functions project

$ func init [project]
copy


Create a new function
$ func new
copy


Run functions locally
$ func start
copy


Publish your code to a function app in Azure
$ func azure functionapp publish [function]
copy


Download all settings from an existing function app
$ func azure functionapp fetch-app-settings [function]
copy


Get the connection string for a specific storage account
$ func azure storage fetch-connection-string [storage_account]
copy

Copied to clipboard