mirror of
https://github.com/kennethreitz-archive/winchestar.git
synced 2026-06-05 07:26:15 +00:00
11 lines
316 B
Python
11 lines
316 B
Python
import os
|
|
import sys
|
|
|
|
sys.path.append('/var/www/winchestar/wincstar')
|
|
sys.path.append('/var/www/winchestar')
|
|
|
|
# os.environ['PYTHON_EGG_CACHE'] = '/var/www/winchestar/.python-egg'
|
|
os.environ['DJANGO_SETTINGS_MODULE'] = 'settings'
|
|
|
|
import django.core.handlers.wsgi
|
|
application = django.core.handlers.wsgi.WSGIHandler() |