Skip to content

Commit fa1dc00

Browse files
authored
more tries
1 parent 8d9cfc1 commit fa1dc00

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

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

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,18 +50,16 @@ 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-
5453
```console
5554
func init --javascript --model V3
5655
```
5756
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.
5857

5958
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).
60-
6159
```console
6260
func new --name HttpExample --template "HTTP trigger" --authlevel "anonymous"
6361
```
64-
[`func new`](functions-core-tools-reference.md#func-new) 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*.
62+
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*.
6563

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

0 commit comments

Comments
 (0)