diff --git a/local_settings_ci.py b/local_settings_ci.py
index 3a42e373d5140f1c3e4a07be95c79c81c53161f1..ed9b923569adabcbffb3b86d6a003528d6d8068c 100644
--- a/local_settings_ci.py
+++ b/local_settings_ci.py
@@ -4,6 +4,11 @@ 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 5bb00bd7e43df115c62f2a24dcdbe44b513133ef..1955e77e6a806c6a1b5a28e3080ee67ff5b9963e 100644
--- a/requirements-dev.txt
+++ b/requirements-dev.txt
@@ -1,3 +1,3 @@
 coverage
-django-debug-toolbar
+django-debug-toolbar==1.9
 mockito
diff --git a/requirements.txt b/requirements.txt
index 566c95d432192607aea1152756c2624615cbaad3..ceeaa9bcc707c1d1ae44fa75053fc1289a61035e 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -1,4 +1,5 @@
 Django==1.10.7
+django_otp==0.4.3
 gunicorn==19.6.0
 Pillow==3.4.2
 psycopg2==2.6.2
@@ -11,7 +12,8 @@ django-two-factor-auth==1.6.1
 nexmo
 django-excel==0.0.9
 pyexcel-xls==0.5.0
-pyexcel==0.5.3
+pyexcel==0.5.8
+pyexcel-io==0.5.8
 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 652a544a7cbe0200a79bf08391d99e85743fc7fd..37a160afe4a23223907c84b0f84222b9ad291147 100644
--- a/smash/smash/local_settings.py.template
+++ b/smash/smash/local_settings.py.template
@@ -2,7 +2,11 @@
 SECRET_KEY = 'Paste long random string here'  # Insert long random string
 
 # SECURITY WARNING: don't run with debug turned on in production!
-DEBUG = True
+DEBUG = False
+
+DEV_APPS = [
+    # 'debug_toolbar',
+]
 
 WSGI_APPLICATION = 'smash.wsgi.application'
 
diff --git a/smash/smash/settings.py b/smash/smash/settings.py
index c11fe16accedc21a7dcdf46f168e4305be7ec5ea..1b0702cfbfcf5b5d8eb705be9b557ac1b04dc717 100644
--- a/smash/smash/settings.py
+++ b/smash/smash/settings.py
@@ -11,6 +11,7 @@ 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__)))
@@ -36,11 +37,11 @@ INSTALLED_APPS = [
     'django_otp.plugins.otp_totp',
     'two_factor',
     'web',
-    'stronghold',
-
-    'debug_toolbar'
+    'stronghold'
 ]
 
+INSTALLED_APPS += DEV_APPS
+
 MIDDLEWARE = [
     'debug_toolbar.middleware.DebugToolbarMiddleware',
     'django.middleware.security.SecurityMiddleware',