Skip to content

Commit a98d37e

Browse files
authored
And again
1 parent fa1dc00 commit a98d37e

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

articles/azure-functions/create-first-function-cli-node.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,15 +50,19 @@ In Azure Functions, a function project is a container for one or more individual
5050

5151
::: zone pivot="nodejs-model-v3"
5252
1. In a suitable folder, run the [`func init`](functions-core-tools-reference.md#func-init) command, as follows, to create a JavaScript Node.js v3 project in the current folder:
53+
5354
```console
5455
func init --javascript --model V3
5556
```
57+
5658
This folder now contains various files for the project, including configurations files named [local.settings.json](functions-develop-local.md#local-settings-file) and [host.json](functions-host-json.md). Because *local.settings.json* can contain secrets downloaded from Azure, the file is excluded from source control by default in the *.gitignore* file.
5759

5860
1. Add a function to your project by using the following command, where the `--name` argument is the unique name of your function (HttpExample) and the `--template` argument specifies the function's trigger (HTTP).
61+
5962
```console
6063
func new --name HttpExample --template "HTTP trigger" --authlevel "anonymous"
6164
```
65+
6266
The [`func new`](functions-core-tools-reference.md#func-new) command creates a subfolder matching the function name that contains a code file appropriate to the project's chosen language and a configuration file named *function.json*.
6367

6468
You may find the [Azure Functions Core Tools reference](functions-core-tools-reference.md) helpful.

0 commit comments

Comments
 (0)