Add your project description here.
To build this project from source, checkout this repository and execute the following commands in your terminal. This requires the .NET SDK to be installed.
cd SpaHost
dotnet run
This will make the service available at http://localhost:8080/.
To run this project with Docker, run the following commands in your terminal (and adjust the first line depending on your platform).
docker build -f Dockerfile.linux-x64 -t SpaHost .
docker run -p 8080:8080 SpaHost
This project uses the GenHTTP webserver to implement it's functionality.