authentic/src/django_rbac/test_settings.py

18 lines
340 B
Python

from django.conf import global_settings
MIDDLEWA_CLASSES = global_settings.MIDDLEWARE
SECRET_KEY = 'whatever'
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': 'authentic2.sqlite3',
}
}
INSTALLED_APPS = (
'django.contrib.auth',
'django.contrib.contenttypes',
'django_rbac',
)