Merge pull request #1445 from eluchsinger/patch-1

Fix typo
This commit is contained in:
Aaron Crawfis 2021-04-28 09:18:32 -07:00 committed by GitHub
commit 8ff1c14743
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 16 additions and 3 deletions

View File

@ -11,7 +11,7 @@ You will now run the sidecar and call the API directly (simulating what an appli
## Step 1: Run the Dapr sidecar
One the most useful Dapr CLI commands is [`dapr run`]({{< ref dapr-run.md >}}). This command launches an application together with a sidecar. For the purpose of this tutorial you'll run the sidecar without an application.
One of the most useful Dapr CLI commands is [`dapr run`]({{< ref dapr-run.md >}}). This command launches an application together with a sidecar. For the purpose of this tutorial you'll run the sidecar without an application.
Run the following command to launch a Dapr sidecar that will listen on port 3500 for a blank application named myapp:
@ -23,7 +23,20 @@ With this command, no custom component folder was defined, so Dapr uses the defa
## Step 2: Save state
In a separate terminal run:
We will now update the state with an object. The new state will look like this:
```json
[
{
"key": "name",
"value": "Bruce Wayne"
}
]
```
Notice, the object contained in the state has a `key` assigned with the value `name`. You will use the key in the next step.
Run the command shown below to store the new state.
{{< tabs "HTTP API (Bash)" "HTTP API (PowerShell)">}}
{{% codetab %}}
@ -44,7 +57,7 @@ Invoke-RestMethod -Method Post -ContentType 'application/json' -Body '[{ "key":
## Step 3: Get state
Now get the state you just stored using a key with the state management API:
Now get the object you just stored in the state by using the state management API with the key `name`:
{{< tabs "HTTP API (Bash)" "HTTP API (PowerShell)">}}