├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── manager ├── appengine │ ├── app.yaml │ ├── main.py │ ├── main_test.py │ ├── requirements.txt │ └── templates │ │ ├── index.html │ │ └── round_form.html └── function │ ├── main.py │ └── requirements.txt ├── player ├── badplayer.py ├── goodplayer.py ├── okayplayer.py └── requirements.txt └── questioners ├── easy_questioner ├── main.py └── requirements.txt └── hard_questioner ├── main.py └── requirements.txt /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/serverless-game-contest/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/serverless-game-contest/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/serverless-game-contest/HEAD/README.md -------------------------------------------------------------------------------- /manager/appengine/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/serverless-game-contest/HEAD/manager/appengine/app.yaml -------------------------------------------------------------------------------- /manager/appengine/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/serverless-game-contest/HEAD/manager/appengine/main.py -------------------------------------------------------------------------------- /manager/appengine/main_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/serverless-game-contest/HEAD/manager/appengine/main_test.py -------------------------------------------------------------------------------- /manager/appengine/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/serverless-game-contest/HEAD/manager/appengine/requirements.txt -------------------------------------------------------------------------------- /manager/appengine/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/serverless-game-contest/HEAD/manager/appengine/templates/index.html -------------------------------------------------------------------------------- /manager/appengine/templates/round_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/serverless-game-contest/HEAD/manager/appengine/templates/round_form.html -------------------------------------------------------------------------------- /manager/function/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/serverless-game-contest/HEAD/manager/function/main.py -------------------------------------------------------------------------------- /manager/function/requirements.txt: -------------------------------------------------------------------------------- 1 | google-cloud-firestore==1.3.0 2 | -------------------------------------------------------------------------------- /player/badplayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/serverless-game-contest/HEAD/player/badplayer.py -------------------------------------------------------------------------------- /player/goodplayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/serverless-game-contest/HEAD/player/goodplayer.py -------------------------------------------------------------------------------- /player/okayplayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/serverless-game-contest/HEAD/player/okayplayer.py -------------------------------------------------------------------------------- /player/requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /questioners/easy_questioner/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/serverless-game-contest/HEAD/questioners/easy_questioner/main.py -------------------------------------------------------------------------------- /questioners/easy_questioner/requirements.txt: -------------------------------------------------------------------------------- 1 | requests>=2.8.1 2 | -------------------------------------------------------------------------------- /questioners/hard_questioner/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/serverless-game-contest/HEAD/questioners/hard_questioner/main.py -------------------------------------------------------------------------------- /questioners/hard_questioner/requirements.txt: -------------------------------------------------------------------------------- 1 | requests>=2.8.1 2 | --------------------------------------------------------------------------------