Created
February 18, 2010 17:26
-
-
Save rdegges/307862 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
DEBUG = True | |
TEMPLATE_DEBUG = DEBUG | |
ADMINS = ( | |
('Randall Degges', '[email protected]'), | |
) | |
MANAGERS = ADMINS | |
DATABASE_ENGINE = 'sqlite3' | |
DATABASE_NAME = 'django_consultants.db' | |
DATABASE_USER = '' | |
DATABASE_PASSWORD = '' | |
DATABASE_HOST = '' | |
DATABASE_PORT = '' | |
TIME_ZONE = 'America/Los_Angeles' | |
LANGUAGE_CODE = 'en-us' | |
SITE_ID = 1 | |
USE_I18N = True | |
SITE_ROOT = os.path.realpath(os.path.dirname(__file__)) | |
MEDIA_ROOT = os.path.join(SITE_ROOT, 'static') | |
MEDIA_URL = '/static/' | |
ADMIN_MEDIA_PREFIX = '/media/' | |
# URL of the login page. | |
LOGIN_URL = '/login/' | |
# Make this unique, and don't share it with anybody. | |
SECRET_KEY = 'somerandomnumbers' | |
TEMPLATE_LOADERS = ( | |
'django.template.loaders.filesystem.load_template_source', | |
'django.template.loaders.app_directories.load_template_source', | |
) | |
MIDDLEWARE_CLASSES = ( | |
'django.middleware.common.CommonMiddleware', | |
'django.contrib.sessions.middleware.SessionMiddleware', | |
'django.contrib.auth.middleware.AuthenticationMiddleware', | |
) | |
ROOT_URLCONF = 'django_consultants.urls' | |
TEMPLATE_DIRS = ( | |
os.path.join(SITE_ROOT, 'templates'), | |
) | |
INSTALLED_APPS = ( | |
'django.contrib.auth', | |
'django.contrib.contenttypes', | |
'django.contrib.sessions', | |
'django.contrib.sites', | |
'portal', | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment