Commit cc3c0501 authored by Nicolas Wavrant's avatar Nicolas Wavrant

flask/paas : templates for minimum flask app are now useless

parent f7ada57f
from server import *
from werkzeug.contrib.fixers import ProxyFix
app.wsgi_app = ProxyFix(app.wsgi_app)
\ No newline at end of file
from flask import Flask
app = Flask(__name__)
@app.route("/")
def hello():
return "Hello World!"
if __name__ == "__main__":
app.run()
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment