Browse Source

Ensure app is found in the right directory

master
Gavan Fantom 2 years ago
parent
commit
ad56b295bf
  1. 5
      wsgi.py

5
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()

Loading…
Cancel
Save