Skip to content

Commit c4b2439

Browse files
authored
Links to func commands
1 parent ed25281 commit c4b2439

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ In Azure Functions, a function project is a container for one or more individual
9191
::: zone pivot="python-mode-configuration"
9292
In this section, you create a function project that contains a single function.
9393

94-
1. Run the `func init` command as follows to create a Python functions project in the virtual environment.
94+
1. Run the [`func init`](functions-core-tools-reference.md#func-init) command as follows to create a Python functions project in the virtual environment.
9595

9696
```console
9797
func init --python --model V1
@@ -105,7 +105,7 @@ In this section, you create a function project that contains a single function.
105105
func new --name HttpExample --template "HTTP trigger" --authlevel "anonymous"
106106
```
107107

108-
`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*.
108+
[`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*.
109109

110110
1. Run this command to make sure that the Azure Functions library is installed in the environment.
111111

@@ -133,7 +133,7 @@ In this section, you create a function project that contains a single function.
133133
::: zone pivot="python-mode-decorators"
134134
In this section, you create a function project and add an HTTP triggered function.
135135

136-
1. Run the `func init` command as follows to create a Python v2 functions project in the virtual environment.
136+
1. Run the [`func init`](functions-core-tools-reference.md#func-init) command as follows to create a Python v2 functions project in the virtual environment.
137137

138138
```console
139139
func init --python
@@ -147,7 +147,7 @@ In this section, you create a function project and add an HTTP triggered functio
147147
func new --name HttpExample --template "HTTP trigger" --authlevel "anonymous"
148148
```
149149

150-
If prompted, choose the **ANONYMOUS** option. `func new` adds an HTTP trigger endpoint named `HttpExample` to the `function_app.py` file, which is accessible without authentication.
150+
If prompted, choose the **ANONYMOUS** option. [`func new`](functions-core-tools-reference.md#func-new) adds an HTTP trigger endpoint named `HttpExample` to the `function_app.py` file, which is accessible without authentication.
151151
152152
1. Open the local.settings.json project file and verify that the `AzureWebJobsFeatureFlags` setting has a value of `EnableWorkerIndexing`. This is required for Functions to interpret your project correctly as the Python v2 model. You'll add this same setting to your application settings after you publish your project to Azure.
153153

0 commit comments

Comments
 (0)