diff options
Diffstat (limited to 'demos/min/context/app.py')
-rw-r--r-- | demos/min/context/app.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/demos/min/context/app.py b/demos/min/context/app.py new file mode 100644 index 0000000..6165f1b --- /dev/null +++ b/demos/min/context/app.py @@ -0,0 +1,10 @@ +from flask import Flask + +app = Flask(__name__) + +@app.route("/") +def hello(): + return "If a man never contradicts himself, the reason must be that he virtually never says anything at all... Erwin Schrodinger" + +if __name__ == "__main__": + app.run(debug=True,host='0.0.0.0') |