This commit is contained in:
Yang Zhang 2019-07-24 07:37:04 +08:00
parent d1c7f77363
commit b84db25f23
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ app = Flask(__name__)
@app.route('/')
def hello():
provider = str(os.environ.get('PROVIDER', 'world'))
return 'Hello '+provider+'!' +'This is a test for auto-doploying!'
return 'Hello '+provider+'!' +'This is a test for doploying!'
if __name__ == '__main__':
# Bind to PORT if defined, otherwise default to 5000.