Initial cleanup of the codebase

Change-Id: Idbc92ea3c2d7ee4d4807d1d83ceee9a299b9a9f7
diff --git a/run.wsgi b/run.wsgi
new file mode 100644
index 0000000..4a4d4f0
--- /dev/null
+++ b/run.wsgi
@@ -0,0 +1,14 @@
+import os
+import sys
+from service import server
+__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 service.server import app as application
+