| changeset 974 | 328aea4ee92b |
| parent 973 | 8251c6a02d6f |
| child 975 | 54262ea8aee4 |
| 973:8251c6a02d6f | 974:328aea4ee92b |
|---|---|
1 import os |
|
2 |
|
3 os.environ['DJANGO_SETTINGS_MODULE'] = 'ldtplatform.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) |