From cc3c0501858778d6ce7f1e0004a824d3938556f6 Mon Sep 17 00:00:00 2001
From: Nicolas Wavrant <nicolas.wavrant@tiolive.com>
Date: Wed, 25 Sep 2013 17:33:55 +0200
Subject: [PATCH] flask/paas : templates for minimum flask app are now useless

---
 stack/flask/__init__.py | 4 ----
 stack/flask/server.py   | 9 ---------
 2 files changed, 13 deletions(-)
 delete mode 100644 stack/flask/__init__.py
 delete mode 100644 stack/flask/server.py

diff --git a/stack/flask/__init__.py b/stack/flask/__init__.py
deleted file mode 100644
index 5de787450..000000000
--- a/stack/flask/__init__.py
+++ /dev/null
@@ -1,4 +0,0 @@
-from server import *
-from werkzeug.contrib.fixers import ProxyFix
-
-app.wsgi_app = ProxyFix(app.wsgi_app)
\ No newline at end of file
diff --git a/stack/flask/server.py b/stack/flask/server.py
deleted file mode 100644
index 107f67b67..000000000
--- a/stack/flask/server.py
+++ /dev/null
@@ -1,9 +0,0 @@
-from flask import Flask
-app = Flask(__name__)
-
-@app.route("/")
-def hello():
-    return "Hello World!"
-
-if __name__ == "__main__":
-    app.run()
-- 
2.30.9