Initial cleanup of the codebase
Change-Id: Idbc92ea3c2d7ee4d4807d1d83ceee9a299b9a9f7
diff --git a/service/run.wsgi b/service/run.wsgi
new file mode 100644
index 0000000..f737a5d
--- /dev/null
+++ b/service/run.wsgi
@@ -0,0 +1,13 @@
+import os
+import sys
+__author__ = 'hanl'
+
+APP_PATH="/var/www/html/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 views import app as application
+from server import app as application
+