Hi,
getting ModuleNotFoundError and running out of patience to troubleshoot. I am positive I am doing something wrong.
Here is my wsgi file
import sys
path = '/home/awaite67/IS211_Final'
if path not in sys.path:
sys.path.append(path)
from app.py import app as application # noqa
Here is my file structure
/home
/awaite67
/IS211_Final
/app.py
What am I doing wrong? Please advise and thank you in advance.