This is the first time I am trying to deploy my django project (myproject) on Webfaction.
My project dir-structure is as follows:
- In webapps/django: myproject.wsgi, myproject
- settings.py is at myproject/src/myproject/
Under such circumstances, how should I define DJANGO_SETTINGS_MODULE
in myproject.wsgi?
For the default installation by webfaction, it is defined as myproject.settings
. Should I be defining DJANGO_SETTINGS_MODULE
as myproject.src.myproject.settings
?