Merge pull request #3862 from paianish62/v1.12

The dapr run command was listed incorrectly for Powershell users. It now has two different options for both Powershell and non-Powershell environments correctly ends in resources-path ../ (done in the get-started-component.md file),
This commit is contained in:
Hannah Hunter 2023-11-13 18:24:47 -05:00 committed by GitHub
commit d6acd94807
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

@ -64,6 +64,12 @@ In the above file definition:
Launch a Dapr sidecar that will listen on port 3500 for a blank application named `myapp`:
PowerShell environment:
```bash
dapr run --app-id myapp --dapr-http-port 3500 --resources-path ../
```
non-PowerShell environment:
```bash
dapr run --app-id myapp --dapr-http-port 3500 --resources-path .
```