# Development django settings import os.path PROJECT_DIR = os.path.dirname(__file__) DEBUG = True TEMPLATE_DEBUG = DEBUG ADMINS = ( ('Darren Pearce', 'darren@darrenpearce.com'), ) MANAGERS = ADMINS DATABASE_ENGINE = 'sqlite3' DATABASE_NAME = os.path.join(PROJECT_DIR,'dev.db') TIME_ZONE = 'America/Chicago' LANGUAGE_CODE = 'en-us' SITE_ID = 1 USE_I18N = True MEDIA_ROOT = os.path.join(PROJECT_DIR,'public/') STATIC_DOC_ROOT = MEDIA_ROOT MEDIA_URL = 'http://localhost:8000/media' ADMIN_MEDIA_PREFIX = '/admin_media/' SECRET_KEY = '-)%qn@$wjiyup6x4w*^-eryr33y+@fni3lyre7c#xuj78qj8+$' TEMPLATE_LOADERS = ( 'django.template.loaders.filesystem.load_template_source', 'django.template.loaders.app_directories.load_template_source', 'dbtemplates.loader.load_template_source', ) MIDDLEWARE_CLASSES = ( 'django.middleware.common.CommonMiddleware', 'django.contrib.sessions.middleware.SessionMiddleware', 'django.contrib.auth.middleware.AuthenticationMiddleware', ) ROOT_URLCONF = 'project.urls' TEMPLATE_DIRS = ( os.path.join(SITE_DIR,'templates') ) INSTALLED_APPS = ( 'django_extensions', 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.sites', 'django.contrib.admin', )