1
0
Fork 1
mirror of https://github.com/coddingtonbear/django-mailbox.git synced 2026-07-09 22:38:19 +02:00
django-mailbox/django_mailbox2/tests/settings.py

13 lines
247 B
Python
Raw Normal View History

2016-05-14 22:06:32 -07:00
DATABASES = {
2021-02-03 23:05:48 -05:00
"default": {
"NAME": "db.sqlite3",
"ENGINE": "django.db.backends.sqlite3",
2016-05-14 22:06:32 -07:00
},
}
INSTALLED_APPS = [
2021-02-03 23:05:48 -05:00
"django.contrib.auth",
"django.contrib.contenttypes",
"django_mailbox",
2016-05-14 22:06:32 -07:00
]
2021-02-03 23:05:48 -05:00
SECRET_KEY = "beepboop"