This application is designed to be used in conjunction with the Confluent Developer course.
To compile your code, execute the following:
dotnet msbuild Fitness.sln
To run your tests, execute the following:
dotnet test Fitness.sln
The application consists of two microservices. Each will need to be executed in a separate terminal.
To execute the application, first, run the Compile and Test steps above.
To execute the ClientGateway, run the following command:
cd ClientGateway
dotnet run
To execute the HeartRateZoneService, run the following command:
cd HeartRateZoneService
dotnet run