django-journal/test_settings.py

11 lines
347 B
Python

INSTALLED_APPS = (
'django_journal', 'django.contrib.contenttypes', 'django.contrib.auth',
'django.contrib.sessions'
)
DATABASES = {
'default': {'ENGINE': 'django.db.backends.postgresql_psycopg2'}
}
SECRET_KEY = "django_tests_secret_key"
PASSWORD_HASHERS = ('django.contrib.auth.hashers.MD5PasswordHasher',)
ROOT_URLCONF = 'test_urls'