From 6ac2a8190c1e17d6fcd95025e105cdd89dc1cc9a Mon Sep 17 00:00:00 2001 From: Seabass Date: Sat, 5 Oct 2019 13:10:00 -0400 Subject: [PATCH] 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. --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 187c7bb..16c0403 100644 --- a/README.md +++ b/README.md @@ -24,8 +24,14 @@ $ ./build.sh 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 ``` + After the application has started visit [http://localhost:5000](http://localhost:5000) in your preferred browser. \ No newline at end of file