Skip to content

Latest commit

 

History

History
34 lines (20 loc) · 1.4 KB

RunTheGameContinuously.md

File metadata and controls

34 lines (20 loc) · 1.4 KB

Challenge 5 - Run the Game Continuously

Prerequisities

  1. Challenge 4 - Run the app on Azure should be done successfully.

Introduction

This is a simple challenge to get your Rock Papers Scissors Boom Server app to play the game continuously. This will help you generate telemetry for your application. As you develop your own bots to play the game, you can use this feature to have the bots automatically play each other and see how your bot compares to the others.

Run the game continuously

Challenges

  1. Find the API URL that you can hit to start a game.
  2. Use an Azure resource to automate hitting this URL.

Success criteria

  1. The game is playing at a continuous interval. (e.g. every 5 minutes)
  2. In Azure DevOps (Boards), from the Boards view, you could now drag and drop the user story associated to this Challenge to the Resolved or Closed column, congrats! ;)

Tips

  • Logic Apps would be a good solution for this!
  • The path will be https://[yourwebsite]/api/rungame
  • Make sure you use the right HTTP Method (POST).
  • Try testing with Postman before setting your automation.

Learning resources

Next challenge (Add Application Monitoring) >