I am getting 'Something went wrong'.....
I am trying to use the images example from Falcon's tutorial and I have done this:
1) Created a 'rest' directory in my home dir. 2) Created app.py & images.py as per tutorial. 3) On Web Tab: set both Source Code & Working Dir to: <home>/rest 4) in my wsgi file I have everything commented out and added:
import sys
import app
#
path = '/home/<my home>/rest'
if path not in sys.path:
sys.path.append(path)
from app import application
Error log tells me: No module named 'app'
Any help would be much appreciated!