django-dbtemplates/example/manage.py
leidel 19794cb5cc Added some documentation for the example project, support to start it directly and small touches on the docs
git-svn-id: https://django-dbtemplates.googlecode.com/svn/trunk@79 cfb8ba98-e953-0410-9cff-959ffddf5974

committer: leidel <leidel@cfb8ba98-e953-0410-9cff-959ffddf5974>

--HG--
extra : convert_revision : 541571d5a5f1a13dc5f65b26fef6a4e93201ee90
2008-11-16 02:03:22 +00:00

15 lines
607 B
Python
Executable file

#!/usr/bin/env python
import os, sys
from django.core.management import execute_manager
sys.path.insert(0, os.path.abspath('./..'))
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)