changeset 10 | fb466c64d84c |
child 12 | dbe15daa39f1 |
9:2e1053dff5f2 | 10:fb466c64d84c |
---|---|
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) |