diff --git a/webapp/app.py b/webapp/app.py index 2fc86fc..35b27c4 100644 --- a/webapp/app.py +++ b/webapp/app.py @@ -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-building!' + return 'Hello '+provider+'!' +'This is a test for auto-building and doploying!' if __name__ == '__main__': # Bind to PORT if defined, otherwise default to 5000.