Advertisement
Guest User

Untitled

a guest
Jul 28th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. import sys, os
  2. INTERP = "/home/sgtotainha/local/bin/python"
  3. if sys.executable != INTERP: os.execl(INTERP, INTERP, *sys.argv)
  4. sys.path.append(os.getcwd())
  5. sys.path.append("/home/sgtotainha/conaryrecipes.com")
  6. sys.path.append("/home/sgtotainha/conaryrecipes.com/souschef")
  7. os.environ['DJANGO_SETTINGS_MODULE'] = "souschef.settings"
  8. import django.core.handlers.wsgi
  9. application = django.core.handlers.wsgi.WSGIHandler()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement