mirror of
https://github.com/jazzband/django-analytical.git
synced 2026-03-31 13:30:24 +00:00
14 lines
200 B
Python
14 lines
200 B
Python
"""
|
|
django-analytical testing settings.
|
|
"""
|
|
|
|
DATABASES = {
|
|
'default': {
|
|
'ENGINE': 'django.db.backends.sqlite3',
|
|
'NAME': ':memory:',
|
|
}
|
|
}
|
|
|
|
INSTALLED_APPS = [
|
|
'analytical',
|
|
]
|