mirror of
https://github.com/jazzband/django-fernet-encrypted-fields.git
synced 2026-03-16 22:40:27 +00:00
14 lines
283 B
Python
14 lines
283 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"
|