This application is based on Microsoft .NET Core 8 LTS. You need to have the SDK installed to build the app.
- Install the version of .NET Core SDK as documented the project file in the XML tag
TargetFramework
. Currently it's .NET 8. - Clone the repo
git clone https://github.com/kksoftwareag/partypoker.git
- Navigate into the project directory
cd partypoker
cd PlanningPoker.Web
- Run the publish command
dotnet publish -o=publish
- Navigate into the output folder
cd publish
- Run the App
dotnet PlanningPoker.Web.dll
- Navigate with a Webbrowser to the url: localhost:5000
- Run the app directly
dotnet run
- Navigate with a Webbrowser to the url: localhost:5000
- Install docker
- Clone the repo
git clone https://github.com/kksoftwareag/partypoker.git
- Navigate into the solution directory
cd partypoker
- Run docker build
docker build .
output:
[...]
=> => writing image sha256:bdf9fe339295350b11beadb3ee04e1ed92ea74c330c23b85c0a1f17537886471 0.0s
- Copy the sha256 hash of the built image and then run the next command with that hash.
- Run the image
docker run bdf9fe339295350b11beadb3ee04e1ed92ea74c330c23b85c0a1f17537886471
- Run docker-compose
docker-compose up