author | ms.service | ms.topic | ms.date | ms.author |
---|---|---|---|---|
ggailey777 |
azure-functions |
include |
08/05/2019 |
glenga |
Run the following command from the command line to create a function app project in the MyFunctionProj
folder of the current local directory. A GitHub repo is also created in MyFunctionProj
.
func init MyFunctionProj
When prompted, select a worker runtime from the following language choices:
dotnet
: creates a .NET class library project (.csproj).node
: creates a Node.js-based project. Choose eitherjavascript
ortypescript
.python
: for a Python project, please instead complete Create an HTTP triggered function in Azure.powershell
: for a PowerShell project, please instead complete Create your first PowerShell function in Azure.
After the project is created, use the following command to navigate to the new MyFunctionProj
project folder.
cd MyFunctionProj