Go to file
Seabass 4dbf9b00c1 Fixes a typo in expected output
Blank floor is ., not #
2019-10-05 13:22:50 -04:00
src Fixes a typo in expected output 2019-10-05 13:22:50 -04:00
.gitignore initial commit 2019-10-05 09:54:15 -04:00
README.md Split running server instructions by os 2019-10-05 13:10:00 -04:00
Server.sln initial commit 2019-10-05 09:54:15 -04:00
build.bat initial commit 2019-10-05 09:54:15 -04:00
build.sh initial commit 2019-10-05 09:54:15 -04:00

README.md

Server

A Giraffe web application, which has been created via the dotnet new giraffe command.

Build and test the application

Windows

Run the build.bat script in order to restore, build and test (if you've selected to include tests) the application:

> ./build.bat

Linux/macOS

Run the build.sh script in order to restore, build and test (if you've selected to include tests) the application:

$ ./build.sh

Run the application

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 in your preferred browser.