Hi,
I have a host company where I have hosted a website made with django and I want migrate this website to a web.py app.
Well, the django app is deployed by a "control panel" and I have access in this server by SSH.
In the root folder (where I have the django app) I have a index.wsgi file with this content:
import os, sys
os.environ['DJANGO_SETTINGS_MODULE']='mywebsite.settings'
import django.core.handlers.wsgi
application = django.core.handlers.wsgi.WSGIHandler()
Then, How to adept/adjusts this index.wsgi file to run my web.py app ?