Skip to content

Commit 7f8faed

Browse files
committed
Update instructions based on testing
1 parent 575309d commit 7f8faed

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed
186 KB
Loading

articles/azure-functions/durable/quickstart-js-vscode.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,17 @@ Currently, JavaScript Durable Functions require Azure Functions V2 compatability
6565

6666
1. Add a setting named `FUNCTIONS_V2_COMPATIBILITY_MODE` with a value of `true`.
6767

68+
```json
69+
{
70+
"IsEncrypted": false,
71+
"Values": {
72+
"AzureWebJobsStorage": "",
73+
"FUNCTIONS_WORKER_RUNTIME": "node",
74+
"FUNCTIONS_V2_COMPATIBILITY_MODE": "true"
75+
}
76+
}
77+
```
78+
6879
## Install the Durable Functions npm package
6980

7081
To work with Durable Functions in a Node.js function app, you use a library called `durable-functions`.
@@ -138,7 +149,11 @@ Azure Functions Core Tools lets you run an Azure Functions project on your local
138149
> [!NOTE]
139150
> Refer to the [Durable Functions Diagnostics](durable-functions-diagnostics.md#debugging) for more information on debugging.
140151

141-
1. Durable Functions requires an Azure Storage account to run. When VS Code prompts you to select a storage account, choose **Select storage account**. Following the prompts, provide the following information to create a new storage account in Azure.
152+
1. Durable Functions requires an Azure Storage account to run. When VS Code prompts you to select a storage account, choose **Select storage account**.
153+
154+
![Create storage account](media/quickstart-js-vscode/functions-vscode-select-storage.png)
155+
156+
1. Following the prompts, provide the following information to create a new storage account in Azure.
142157

143158
| Prompt | Value | Description |
144159
| ------ | ----- | ----------- |

0 commit comments

Comments
 (0)