diff --git a/wsgi.py b/wsgi.py index 5f3fc78..6bec61b 100644 --- a/wsgi.py +++ b/wsgi.py @@ -1,4 +1,9 @@ #!/usr/bin/env python3 +import sys +from os import path + +sys.path.insert(0, path.abspath(path.dirname(__file__))) + from jlcchart import create_app application = create_app()