mirror of
https://github.com/Hopiu/django-notifications.git
synced 2026-05-25 20:53:45 +00:00
22 lines
No EOL
351 B
Python
22 lines
No EOL
351 B
Python
SECRET_KEY = 'secret_key'
|
|
SOUTH_TESTS_MIGRATE = True
|
|
|
|
TESTING = True
|
|
|
|
DATABASES = {
|
|
'default': {
|
|
'ENGINE': 'django.db.backends.sqlite3',
|
|
'NAME': ':memory:',
|
|
}
|
|
}
|
|
|
|
|
|
MIDDLEWARE_CLASSES = ()
|
|
|
|
INSTALLED_APPS = (
|
|
'django.contrib.auth',
|
|
'django.contrib.contenttypes',
|
|
'notifications',
|
|
)
|
|
|
|
ROOT_URLCONF = 'notifications.urls' |