├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── api_key.py.sample ├── app.yaml ├── circle.yml ├── e2e_test.py ├── main.py ├── requirements.txt ├── scripts └── fetch_gae_sdk.py └── test_main.py /.gitignore: -------------------------------------------------------------------------------- 1 | api_key.py 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/continuous-deployment-circle/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/continuous-deployment-circle/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/continuous-deployment-circle/HEAD/README.md -------------------------------------------------------------------------------- /api_key.py.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/continuous-deployment-circle/HEAD/api_key.py.sample -------------------------------------------------------------------------------- /app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/continuous-deployment-circle/HEAD/app.yaml -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/continuous-deployment-circle/HEAD/circle.yml -------------------------------------------------------------------------------- /e2e_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/continuous-deployment-circle/HEAD/e2e_test.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/continuous-deployment-circle/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/continuous-deployment-circle/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/fetch_gae_sdk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/continuous-deployment-circle/HEAD/scripts/fetch_gae_sdk.py -------------------------------------------------------------------------------- /test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/continuous-deployment-circle/HEAD/test_main.py --------------------------------------------------------------------------------