Go to file
Chris Sexton 5c2ca407d1
Update aspnetcore.yml
2019-10-05 13:28:18 -04:00
.github/workflows Update aspnetcore.yml 2019-10-05 13:28:18 -04:00
src Distinguishes between wall facing, directions 2019-10-05 13:23:25 -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 build.* runs the tests 2019-10-05 13:26:54 -04:00
build.sh build.* runs the tests 2019-10-05 13:26:54 -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.