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:
Seabass 2019-10-05 13:10:00 -04:00
parent f76816fd09
commit 6ac2a8190c
1 changed files with 6 additions and 0 deletions

View File

@ -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.