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

13 lines
248 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",
2021-02-08 23:39:19 -05:00
"django_mailbox2",
2016-05-14 22:06:32 -07:00
]
2021-02-03 23:05:48 -05:00
SECRET_KEY = "beepboop"