Refactor webpack into its own docker service.

This commit is contained in:
Drew Larson
2016-12-30 23:41:25 -06:00
parent 8f1c2308d5
commit 07220fd7d8
5 changed files with 38 additions and 16 deletions
@@ -1,3 +1,4 @@
import sys
from .base import *
@@ -14,11 +15,14 @@ DATABASES = {
'ENGINE': 'django.db.backends.postgresql',
'NAME': 'postgres',
'USER': 'postgres',
'HOST': 'db',
'HOST': 'workstand_db_1',
'PORT': '5432',
}
}
if 'test' in sys.argv or 'test_coverage' in sys.argv: #Covers regular testing and django-coverage
DATABASES['default']['ENGINE'] = 'django.db.backends.sqlite3'
LOGGING = {
'version': 1,
'disable_existing_loggers': False,
@@ -45,9 +49,11 @@ LOGGING = {
},
}
INSTALLED_APPS += [
'debug_toolbar'
]
# INSTALLED_APPS += [
# 'debug_toolbar'
# ]
# MIDDLEWARE_CLASSES += ['debug_toolbar.middleware.DebugToolbarMiddleware']
# Don't worry about IP addresses, just show the toolbar.
DEBUG_TOOLBAR_CONFIG = {