0👍
Add var/www/project
to your PYTHONPATH
.
Just add the following lines to wsgi.py
:
import sys
sys.path.append('/var/www/project/')
as per OP @igteraous’ own edit to the question.
Source:stackexchange.com
0👍
Add var/www/project
to your PYTHONPATH
.
Just add the following lines to wsgi.py
:
import sys
sys.path.append('/var/www/project/')
as per OP @igteraous’ own edit to the question.