StoreWeb is a webapp that makes use of StoreLib.
Clone the repo and build StoreWeb using either Visual Studio 2022, VS Code or dotnet CLI.
dotnet build
Run StoreWeb.dll using the ASP.NET 7.0 runtime
dotnet run -p app
docker build -t storeweb_docker .
docker run -it --rm -p 80:80 --name storeweb storeweb_docker
# Start the service
docker-compose up -d
# To stop the service
docker-compose down
docker run -it --rm -p 80:80 storedev/store-web