Rock, Paper, Scissors game to demonstrate Cloud Foundry development concepts and service integrations
20170120: Instant gameplay available on PUT route
$ export FLASK_DEBUG=1
$ python cf-rps.py
Browse to http://localhost:8088/
$ curl -X PUT http://localhost:8088/games/rock
{
"game_id": null,
"match_id": null,
"plays": {
"computer": "rock",
"person": "rock"
},
"status": "Tie game!",
"validPlays": [
"rock",
"paper",
"scissors"
]
}