mirror of
https://github.com/jazzband/django-fernet-encrypted-fields.git
synced 2026-03-16 22:40:27 +00:00
18 lines
294 B
Python
18 lines
294 B
Python
DATABASES = {
|
|
'default': {
|
|
'ENGINE': 'django.db.backends.sqlite3',
|
|
'NAME': ':memory:',
|
|
},
|
|
}
|
|
|
|
SECRET_KEY = 'abc'
|
|
SALT_KEY = 'xyz'
|
|
|
|
INSTALLED_APPS = (
|
|
'encrypted_fields',
|
|
'package_test'
|
|
)
|
|
|
|
MIDDLEWARE_CLASSES = []
|
|
DEFAULT_AUTO_FIELD = 'django.db.models.AutoField'
|
|
|