mirror of
https://github.com/DarrenOfficial/dpaste.git
synced 2024-11-15 08:02:54 +11:00
13 lines
283 B
Python
13 lines
283 B
Python
import os, sys
|
|
import site
|
|
|
|
site.addsitedir('/opt/webapps/pastebin/lib/python2.5/site-packages')
|
|
|
|
|
|
sys.stdout = sys.stderr
|
|
|
|
os.environ['DJANGO_SETTINGS_MODULE'] = 'pastebin.conf.local.settings'
|
|
|
|
import django.core.handlers.wsgi
|
|
|
|
application = django.core.handlers.wsgi.WSGIHandler()
|