I've created a small Python web application using Flask, and I wanted to host it in alwaysdata.net. I already installed mod_wsgi in my subdomain, but when I try to import the main module of my app it fails because it can't be found. All the files are in the /www folder.
Should I place my files somewhere else? I tried including the current working directory in my .wsgi file but it still doesn't work.
For reference, my .wsgi looks like this:
import os
import sys
sys.path.append(os.getcwd())
from ngl import app as application
My application is called ngl.py and it's in the same folder as the .wsgi file.
Thanks!