mirror of
https://github.com/jazzband/django-analytical.git
synced 2026-04-12 11:01:04 +00:00
Running without a SECRET_KEY becomes a DeprecationWarning in Django 1.4, and will start raising an ImproperlyConfigured error in Django 1.5. Details: https://docs.djangoproject.com/en/1.4/releases/1.4/#secret-key-setting-is-required
16 lines
224 B
Python
16 lines
224 B
Python
"""
|
|
django-analytical testing settings.
|
|
"""
|
|
|
|
DATABASES = {
|
|
'default': {
|
|
'ENGINE': 'django.db.backends.sqlite3',
|
|
'NAME': ':memory:',
|
|
}
|
|
}
|
|
|
|
INSTALLED_APPS = [
|
|
'analytical',
|
|
]
|
|
|
|
SECRET_KEY = 'testing'
|