diff --git a/local_settings_ci.py b/local_settings_ci.py index ed9b923569adabcbffb3b86d6a003528d6d8068c..3a42e373d5140f1c3e4a07be95c79c81c53161f1 100644 --- a/local_settings_ci.py +++ b/local_settings_ci.py @@ -4,11 +4,6 @@ SECRET_KEY = 'Paste long random string here' # Insert long random string # SECURITY WARNING: don't run with debug turned on in production! DEBUG = True -DEV_APPS = [ - 'debug_toolbar', -] - - WSGI_APPLICATION = 'smash.wsgi.application' # Database diff --git a/requirements-dev.txt b/requirements-dev.txt index 1955e77e6a806c6a1b5a28e3080ee67ff5b9963e..5bb00bd7e43df115c62f2a24dcdbe44b513133ef 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -1,3 +1,3 @@ coverage -django-debug-toolbar==1.9 +django-debug-toolbar mockito diff --git a/requirements.txt b/requirements.txt index ceeaa9bcc707c1d1ae44fa75053fc1289a61035e..566c95d432192607aea1152756c2624615cbaad3 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,4 @@ Django==1.10.7 -django_otp==0.4.3 gunicorn==19.6.0 Pillow==3.4.2 psycopg2==2.6.2 @@ -12,8 +11,7 @@ django-two-factor-auth==1.6.1 nexmo django-excel==0.0.9 pyexcel-xls==0.5.0 -pyexcel==0.5.8 -pyexcel-io==0.5.8 +pyexcel==0.5.3 pycurl==7.43.0 django-stronghold==0.2.9 timeout-decorator==0.4.0 diff --git a/smash/smash/local_settings.py.template b/smash/smash/local_settings.py.template index 37a160afe4a23223907c84b0f84222b9ad291147..652a544a7cbe0200a79bf08391d99e85743fc7fd 100644 --- a/smash/smash/local_settings.py.template +++ b/smash/smash/local_settings.py.template @@ -2,11 +2,7 @@ SECRET_KEY = 'Paste long random string here' # Insert long random string # SECURITY WARNING: don't run with debug turned on in production! -DEBUG = False - -DEV_APPS = [ - # 'debug_toolbar', -] +DEBUG = True WSGI_APPLICATION = 'smash.wsgi.application' diff --git a/smash/smash/settings.py b/smash/smash/settings.py index 1b0702cfbfcf5b5d8eb705be9b557ac1b04dc717..c11fe16accedc21a7dcdf46f168e4305be7ec5ea 100644 --- a/smash/smash/settings.py +++ b/smash/smash/settings.py @@ -11,7 +11,6 @@ https://docs.djangoproject.com/en/1.10/ref/settings/ """ import os -from local_settings import DEV_APPS # Build paths inside the project like this: os.path.join(BASE_DIR, ...) BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) @@ -37,10 +36,10 @@ INSTALLED_APPS = [ 'django_otp.plugins.otp_totp', 'two_factor', 'web', - 'stronghold' -] + 'stronghold', -INSTALLED_APPS += DEV_APPS + 'debug_toolbar' +] MIDDLEWARE = [ 'debug_toolbar.middleware.DebugToolbarMiddleware',