Initial cleanup of the codebase
Change-Id: Idbc92ea3c2d7ee4d4807d1d83ceee9a299b9a9f7
diff --git a/service/run.wsgi.py b/service/run.wsgi.py
new file mode 100644
index 0000000..fe9647c
--- /dev/null
+++ b/service/run.wsgi.py
@@ -0,0 +1,15 @@
+import os
+
+import sys
+
+from server import app
+
+
+__author__ = 'hanl'
+
+APP_PATH = "/home/korap/virtual_flask"
+activate_this = os.path.join(APP_PATH, 'flask/bin', 'activate_this.py')
+execfile(activate_this, dict(__file__=activate_this))
+sys.path.append(os.path.join(APP_PATH, 'service'))
+
+from server import app as application