#wsgi.py  for smf.py Flask System

import sys
import os

#Add project directory to Python path
project_home = os.path.dirname(os.path.abspath(__name__))
print("Prj home = ", project_home)
if project_home not in sys.path:
    sys.path.insert(0, project_home)

# Import the app object form my app.py file
# The 'as application is a common convention'

import app as application

