mirror of
https://github.com/google-github-actions/setup-gcloud.git
synced 2026-08-21 13:09:24 +00:00
initial Add test app and tests add license Update ReadMe and runner Fix lint errors Missed fixes Update tests to run integration on PR rename pkg -> setupGloudSDK Update ts congig Remove project id requirement Update gcloud set project id func Add unit tests for pkg Add set project to action rebuild Fix gcloud typo lint pkg and update project id dependency Update tmp JSON writer Add cleanup to integration tests Update get input validation fix json string Fix test order and version name add project id to test remove clean up step Update project url Add no promote flag test stderr vs stdout Update pkg build refactor setup-gcloud clean up Fix tool command for isAuthenticated debugging test command Fix isInstalled method Clean up
35 lines
1.2 KiB
Python
35 lines
1.2 KiB
Python
# Copyright 2018 Google LLC
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
# [START gae_python37_app]
|
|
from flask import Flask
|
|
|
|
|
|
# If `entrypoint` is not defined in app.yaml, App Engine will look for an app
|
|
# called `app` in `main.py`.
|
|
app = Flask(__name__)
|
|
|
|
|
|
@app.route('/')
|
|
def hello():
|
|
"""Return a friendly HTTP greeting."""
|
|
return 'Hello World!'
|
|
|
|
|
|
if __name__ == '__main__':
|
|
# This is used when running locally only. When deploying to Google App
|
|
# Engine, a webserver process such as Gunicorn will serve the app. This
|
|
# can be configured by adding an `entrypoint` to app.yaml.
|
|
app.run(host='127.0.0.1', port=8080, debug=True)
|
|
# [END gae_python37_app]
|