Hi !
I'm a beginner and I'm trying to develop a website. But I'm having troubles.
Here's the error message :
ModuleNotFoundError: No module named 'app'
I think I've correctly configured my WSGI Configuration file :
import sys
# add your project directory to the sys.path
project_home = '/home/elthib/mysite/site_bds/'
if project_home not in sys.path:
sys.path = [project_home] + sys.path
# import flask app but need to call it "application" for WSGI to work
from app import app as application # noqa
I cloned my GitHub repository : https://i.postimg.cc/4yWyY4gZ/files.png