~devcamcar/horizon/trunk

« back to all changes in this revision

Viewing changes to openstack-dashboard/dashboard/wsgi/django.wsgi

  • Committer: Devin Carlen
  • Date: 2011-06-18 05:59:37 UTC
  • Revision ID: devin.carlen@gmail.com-20110618055937-aobwm0buvviijz3o
Moved codebase to GitHub

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
import logging
2
 
import os
3
 
import sys
4
 
import django.core.handlers.wsgi
5
 
from django.conf import settings
6
 
 
7
 
os.environ['DJANGO_SETTINGS_MODULE'] = 'dashboard.settings'
8
 
sys.stdout = sys.stderr
9
 
 
10
 
DEBUG = False
11
 
 
12
 
application = django.core.handlers.wsgi.WSGIHandler()
13