Skip to content
Snippets Groups Projects
Commit 91a87d31 authored by Branson Stephens's avatar Branson Stephens
Browse files

added branson.wsgi for convenience.

parent 2deadc33
No related branches found
No related tags found
No related merge requests found
import os
import sys
os.environ['DJANGO_SETTINGS_MODULE'] = 'settings'
# Sandbox libs here, if required.
#
#sys.path.append('/home/lars/wsgi-sandbox/lib/python2.6')
#sys.path.append('/home/lars/wsgi-sandbox/lib/python2.6/site-packages')
#sys.path.append('/home/gracedb/graceproj')
sys.path.append('/home/bmoe/sandbox/lib/python2.6')
sys.path.append('/home/bmoe/sandbox/lib/python2.6/site-packages')
sys.path.append('/home/branson/sandbox/lib/python2.6/site-packages')
sys.path.append('/home/branson/gracedbdev')
# Scott's Shib app uses loggers.
import logging
logging.basicConfig()
#logging.basicConfig(level=logging.DEBUG,
# format='%(asctime)s %(levelname)s %(message)s',
# filename='/tmp/myapp.log',
# filemode='w')
import django.core.handlers.wsgi
application = django.core.handlers.wsgi.WSGIHandler()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment