Web application to manage bridge tournaments
This is mostly an experimentation around Asp.Net Core and Angular, however it may eventually come to something useful, who knows ?
# Running the server
dotnet run
# Running backend tests
dotnet test
# Running frontend unit tests
cd ClientApp
npm test
# Running frontend end-to-end tests
# --silent is to avoid spurious npm error message in case of failure
cd ClientApp
npm run e2e --silent