Forums

Project loaded according to discussion but I still see the PythonAnywhere default page

I followed the steps from the tutorial and made everything accordingly but I still see the default page which is weird because I do not even know from where is coming, here is my wsgi file: Thanks

import os
import sys
path = '/home/andercorobert/app/agile'
if path not in sys.path:
    sys.path.insert(0, path)

os.environ['DJANGO_SETTINGS_MODULE'] = 'agile.settings'

from django.core.wsgi import get_wsgi_application
application = get_wsgi_application()

[edit by admin: formatting]

I see that you posted about a different issue later on, so I'm guessing that you worked out what was going on with this?

also the later issue was related to that, but not sure how it was solved since the code was kept exactly the same, I went through the requirements.txt and tried to install them again, even if everything showed as already installed it worked after. Thanks