web/ldtplatform/django_wsgi.py
author grandjoncl
Wed, 28 Nov 2012 12:27:08 +0100
changeset 995 94f9d36371f6
parent 586 9606d6acba7e
permissions -rw-r--r--
new template tag absstatic to have absolute url for static file and avoid using LDT_MEDIA_PREFIX new absurl template tag can be used instead of template tag url to have absolute url replacement of all LDT_MEDIA_PREFIX in different templates and views
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
584
8f76d59406fe add uwsgi bootstrap file
ymh <ymh.work@gmail.com>
parents:
diff changeset
     1
import os
8f76d59406fe add uwsgi bootstrap file
ymh <ymh.work@gmail.com>
parents:
diff changeset
     2
8f76d59406fe add uwsgi bootstrap file
ymh <ymh.work@gmail.com>
parents:
diff changeset
     3
os.environ['DJANGO_SETTINGS_MODULE'] = 'ldtplatform.settings'
8f76d59406fe add uwsgi bootstrap file
ymh <ymh.work@gmail.com>
parents:
diff changeset
     4
 
8f76d59406fe add uwsgi bootstrap file
ymh <ymh.work@gmail.com>
parents:
diff changeset
     5
import django.core.handlers.wsgi
8f76d59406fe add uwsgi bootstrap file
ymh <ymh.work@gmail.com>
parents:
diff changeset
     6
8f76d59406fe add uwsgi bootstrap file
ymh <ymh.work@gmail.com>
parents:
diff changeset
     7
application = django.core.handlers.wsgi.WSGIHandler()
8f76d59406fe add uwsgi bootstrap file
ymh <ymh.work@gmail.com>
parents:
diff changeset
     8
8f76d59406fe add uwsgi bootstrap file
ymh <ymh.work@gmail.com>
parents:
diff changeset
     9
if os.environ.get('PYDEV_DEBUG', "False").lower() in ["true", "1", "t"]:
8f76d59406fe add uwsgi bootstrap file
ymh <ymh.work@gmail.com>
parents:
diff changeset
    10
    import pydevd #@UnresolvedImport
8f76d59406fe add uwsgi bootstrap file
ymh <ymh.work@gmail.com>
parents:
diff changeset
    11
    pydevd.settrace(suspend=False)