mirror of
https://github.com/Hopiu/django-uuslug.git
synced 2026-05-09 11:04:43 +00:00
9 lines
189 B
Python
9 lines
189 B
Python
DATABASES = {
|
|
'default': {
|
|
'ENGINE': 'django.db.backends.sqlite3',
|
|
'NAME': ':memory:',
|
|
},
|
|
}
|
|
SECRET_KEY = "un33k"
|
|
INSTALLED_APPS = ['uuslug']
|
|
MIDDLEWARE_CLASSES = []
|