diff --git a/wsgi.py b/wsgi.py new file mode 100644 index 0000000000000000000000000000000000000000..f0c080c3fe7cc5f279e2bae7d641ffadc9a6aa3d --- /dev/null +++ b/wsgi.py @@ -0,0 +1,7 @@ +import sys +import os + +SITE_ROOT = os.path.dirname(os.path.realpath(__file__)) +sys.path.insert(0,SITE_ROOT + '/app') + +from app import app as application \ No newline at end of file