This commit is contained in:
Matthew Ryan Dillon 2016-06-08 16:18:35 -07:00
parent 75829eb4a1
commit 9132cd142e
7 changed files with 194 additions and 1 deletions

View file

@ -41,6 +41,10 @@ EMAIL_BACKEND = env('DJANGO_EMAIL_BACKEND',
MIDDLEWARE_CLASSES += ('debug_toolbar.middleware.DebugToolbarMiddleware',)
INSTALLED_APPS += ('debug_toolbar', )
# Testing
# ------------------------------------------------------------------------------
INSTALLED_APPS += ('django_extensions', 'test_without_migrations')
INTERNAL_IPS = ('127.0.0.1', )
DEBUG_TOOLBAR_CONFIG = {
@ -54,6 +58,8 @@ DEBUG_TOOLBAR_CONFIG = {
# ------------------------------------------------------------------------------
TEST_RUNNER = 'django.test.runner.DiscoverRunner'
MANIFEST_URL = env('MANIFEST_URL', default=None)
CORS_ORIGIN_ALLOW_ALL = True
DJOSER = {
'SITE_NAME': 'CCDB (test)',