Flask - Deployment
Given this Flask app code snippet running in production with debug off:
What will a user see when visiting the root URL?
from flask import Flask
app = Flask(__name__)
@app.route('/')
def home():
return 'Hello, World!'
if __name__ == '__main__':
app.run(debug=False)What will a user see when visiting the root URL?
