source: src/django_gheat/django.wsgi@ 9546

Last change on this file since 9546 was 9383, checked in by rick, 13 years ago

Rename to a more commonly used name, instead of my own.

  • Property svn:executable set to *
File size: 302 bytes
Line 
1#!/usr/local/bin/python
2import os
3import sys
4
5sys.path.append(os.path.abspath(os.path.dirname(__file__)))
6
7os.environ['DJANGO_SETTINGS_MODULE'] = 'settings'
8os.environ['PYTHON_EGG_CACHE'] = '/tmp/python_egg_cache'
9
10import django.core.handlers.wsgi
11application = django.core.handlers.wsgi.WSGIHandler()
Note: See TracBrowser for help on using the repository browser.