mirror of
https://github.com/Hopiu/django-uuslug.git
synced 2026-03-23 15:20:24 +00:00
8 lines
165 B
Python
8 lines
165 B
Python
DATABASES = {
|
|
'default': {
|
|
'ENGINE': 'django.db.backends.sqlite3',
|
|
'NAME': ':memory:',
|
|
},
|
|
}
|
|
SECRET_KEY = "un33k"
|
|
INSTALLED_APPS = ['uuslug']
|