diff options
-rwxr-xr-x | index.wsgi | 11 |
1 files changed, 7 insertions, 4 deletions
@@ -2,17 +2,20 @@ import os import sys import site +path_to_venv = "/home/vlabs-sbhs/code/venv/" +path_to_project_root = "/home/vlabs-sbhs/code/sbhs/" + # Add the site-packages of the chosen virtualenv to work with -site.addsitedir('/home/dkoder/SBHS-debakanta/local/lib/python2.7/site-packages/') +site.addsitedir(path_to_venv + 'local/lib/python2.7/site-packages/') # Add the app's directory to the PYTHONPATHr -sys.path.append('/home/dkoder/sbhs/') -sys.path.append('/home/dkoder/sbhs/sbhs_server/') +sys.path.append(path_to_project_root) +sys.path.append(path_to_project_root + 'sbhs_server/') os.environ['DJANGO_SETTINGS_MODULE'] = 'sbhs_server.settings' # Activate your virtual env -activate_env=os.path.expanduser("/home/dkoder/SBHS-debakanta/bin/activate_this.py") +activate_env=os.path.expanduser(path_to_venv + "bin/activate_this.py") execfile(activate_env, dict(__file__=activate_env)) from django.core.wsgi import get_wsgi_application |