diff options
| author | Sean Brant | 2013-03-10 18:39:11 -0500 | 
|---|---|---|
| committer | Sean Brant | 2013-03-10 18:39:17 -0500 | 
| commit | a335c4fe1544eceaa33e77a88b32edb1dea2108a (patch) | |
| tree | eaa356757922367a1a9b13c7c6c985a45a43ed9b /examples/djangoproject/manage.py | |
| parent | 9d729155580ea5212386c0f7d71f4b89809073e5 (diff) | |
| download | pykss-a335c4fe1544eceaa33e77a88b32edb1dea2108a.tar.bz2 | |
Adds pykss.contrib.django
Provides a generic view as well as a template tag for generating
style guides.
Diffstat (limited to 'examples/djangoproject/manage.py')
| -rw-r--r-- | examples/djangoproject/manage.py | 10 | 
1 files changed, 10 insertions, 0 deletions
| diff --git a/examples/djangoproject/manage.py b/examples/djangoproject/manage.py new file mode 100644 index 0000000..6c0acfc --- /dev/null +++ b/examples/djangoproject/manage.py @@ -0,0 +1,10 @@ +#!/usr/bin/env python +import os +import sys + + +if __name__ == '__main__': +    os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'djangoproject.settings') + +    from django.core.management import execute_from_command_line +    execute_from_command_line(sys.argv) | 
