Skip to content

Commit

Permalink
use dash when running self-hosted dotnet profile (#202)
Browse files Browse the repository at this point in the history
The documentation for selecting the self-hosting profile incorrectly used an em dash (`—`) where it should have used a normal dash (`-`). This caused the dotnet runtime to select the wrong port when running instructions listed in the contributor docs. This commit replaces the em dash with a normal dash.
  • Loading branch information
audreyality authored Sep 21, 2023
1 parent e0b77ad commit 2f358db
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/getting-started/server/self-hosted/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ To run self-hosted from the CLI, you will need to:
3. Start the Identity service:
```bash
dotnet run -launch-profile Identity-SelfHost
dotnet run --launch-profile Identity-SelfHost
```
4. Test that the Identity service is alive by navigating to
Expand All @@ -266,7 +266,7 @@ To run self-hosted from the CLI, you will need to:
6. Start the Api Service:
```bash
dotnet run -launch-profile Api-SelfHost
dotnet run --launch-profile Api-SelfHost
```
7. Test that the Api service is alive by navigating to
Expand Down

0 comments on commit 2f358db

Please sign in to comment.