19 lines
333 B
Python
19 lines
333 B
Python
from tests.app.settings import *
|
|
|
|
|
|
DATABASES = {
|
|
'default': {
|
|
'ENGINE': 'django.db.backends.sqlite3',
|
|
'NAME': 'local.sqlite3',
|
|
},
|
|
}
|
|
|
|
ALLOWED_HOSTS = ['*']
|
|
|
|
EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'
|
|
EMAIL_HOST = 'mail'
|
|
EMAIL_PORT = 25
|
|
|
|
INSTALLED_APPS += [
|
|
'wagtail.contrib.styleguide'
|
|
] |