| author | ymh <ymh.work@gmail.com> |
| Fri, 25 Jan 2013 18:42:14 +0100 | |
| changeset 115 | f0c57c52a940 |
| parent 20 | 3cbd273eddf1 |
| permissions | -rwxr-xr-x |
| 6 | 1 |
import os |
2 |
||
3 |
os.environ['DJANGO_SETTINGS_MODULE'] = 'theend.settings' |
|
4 |
||
5 |
import django.core.handlers.wsgi |
|
6 |
||
7 |
application = django.core.handlers.wsgi.WSGIHandler() |
|
8 |
||
9 |
if os.environ.get('PYDEV_DEBUG', "False").lower() in ["true", "1", "t"]: |
|
10 |
import pydevd #@UnresolvedImport |
|
11 |
pydevd.settrace(suspend=False) |