Split running server instructions by os
Windows disagrees with everyone else about how to represent a path. As such, the previous instructions wouldn't execute on windows.
This commit is contained in:
parent
f76816fd09
commit
6ac2a8190c
|
@ -24,8 +24,14 @@ $ ./build.sh
|
||||||
|
|
||||||
After a successful build you can start the web application by executing the following command in your terminal:
|
After a successful build you can start the web application by executing the following command in your terminal:
|
||||||
|
|
||||||
|
### Windows
|
||||||
|
|
||||||
|
dotnet run --project .\src\Server\
|
||||||
|
|
||||||
|
### Linux / macOS
|
||||||
```
|
```
|
||||||
dotnet run src/Server
|
dotnet run src/Server
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
After the application has started visit [http://localhost:5000](http://localhost:5000) in your preferred browser.
|
After the application has started visit [http://localhost:5000](http://localhost:5000) in your preferred browser.
|
Loading…
Reference in New Issue