mirror of
https://github.com/serverless/serverless.git
synced 2026-01-18 14:58:43 +00:00
19 lines
349 B
Python
19 lines
349 B
Python
# Copyright 2019 Google LLC
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
import os
|
|
|
|
from flask import Flask
|
|
|
|
app = Flask(__name__)
|
|
|
|
|
|
@app.route('/')
|
|
def hello_world():
|
|
target = os.environ.get('TARGET', 'World')
|
|
return f'Hello {target}\n'
|
|
|
|
|
|
if __name__ == '__main__':
|
|
app.run(debug=True, host='0.0.0.0', port=int(os.environ.get('PORT', 8080)))
|