Static website at https://www.hypercards.io by Michael Tanner.
Used Blazor Starter Application
as a starting point from https://github.com/staticwebdev/blazor-starter
For local hosting run:
cd Client
dotnet run
Then in another terminal, run:
# Ensure swa is installed: https://azure.github.io/static-web-apps-cli/
swa start http://localhost:5000
To build and publish site, run:
cd Client
dotnet publish -c Release
To test published/static site, run this on your local machine:
cd Client/bin/Release/net9.0/publish/wwwroot
python3 -m http.server 8000