From 9327cd86b2c9f1db0108c97e630c6d5610e65b0d Mon Sep 17 00:00:00 2001 From: Rob Hudson Date: Thu, 11 Feb 2010 14:19:30 -0800 Subject: Added example project directory. Currently this allows for easy manual testing a few other Javascript libraries and whether the debug toolbar javascript conflicts with them. --- example/manage.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 example/manage.py (limited to 'example/manage.py') diff --git a/example/manage.py b/example/manage.py new file mode 100755 index 0000000..5e78ea9 --- /dev/null +++ b/example/manage.py @@ -0,0 +1,11 @@ +#!/usr/bin/env python +from django.core.management import execute_manager +try: + import settings # Assumed to be in the same directory. +except ImportError: + import sys + sys.stderr.write("Error: Can't find the file 'settings.py' in the directory containing %r. It appears you've customized things.\nYou'll have to run django-admin.py, passing it your settings module.\n(If the file settings.py does indeed exist, it's causing an ImportError somehow.)\n" % __file__) + sys.exit(1) + +if __name__ == "__main__": + execute_manager(settings) -- cgit v1.2.3