Skip to content

Commit a42f5cc

Browse files
committed
tab fixes
1 parent aafcea1 commit a42f5cc

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

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

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,8 @@ You can use the `azd init` command to create a local Azure Functions code projec
183183
```console
184184
azd init --template functions-quickstart-python-http-azd
185185
```
186-
This pulls the project files from the [template repository](https://github.com/Azure-Samples/functions-quickstart-python-http-azd) and initializes the project in the root folder.
186+
187+
This pulls the project files from the [template repository](https://github.com/Azure-Samples/functions-quickstart-python-http-azd) and initializes the project in the root folder.
187188

188189
[!INCLUDE [functions-quickstart-azd-env](../../includes/functions-quickstart-azd-env.md)]
189190

@@ -391,11 +392,12 @@ You can use the Core Tools to obtain the URL endpoints of your functions running
391392
func azure functionapp list-functions $APP_NAME --show-keys
392393
```
393394

394-
### [Cmd](#tab/bash)
395+
### [Cmd](#tab/cmd)
395396
```cmd
396397
for /f "tokens=*" %i in ('azd env get-value AZURE_FUNCTION_NAME') do set APP_NAME=%i
397398
func azure functionapp list-functions %APP_NAME% --show-keys
398399
```
400+
399401
---
400402

401403
The `azd env get-value` command gets your function app name from the local environment. Using the `--show-keys` option means that the returned **Invoke URL:** value for each endpoint includes a function-level access key.

0 commit comments

Comments
 (0)