Skip to content
Snippets Groups Projects
Commit 6f0e3afa authored by Piotr Gawron's avatar Piotr Gawron
Browse files

Revert "Merge branch 'bug/migration_problem_issue_236_devel' into 'master'"

This reverts merge request !157
parent 921fc993
No related branches found
No related tags found
1 merge request!159Revert "Merge branch 'bug/migration_problem_issue_236_devel' into 'master'"
Pipeline #6468 failed
...@@ -4,11 +4,6 @@ SECRET_KEY = 'Paste long random string here' # Insert long random string ...@@ -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! # SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True DEBUG = True
DEV_APPS = [
'debug_toolbar',
]
WSGI_APPLICATION = 'smash.wsgi.application' WSGI_APPLICATION = 'smash.wsgi.application'
# Database # Database
......
coverage coverage
django-debug-toolbar==1.9 django-debug-toolbar
mockito mockito
Django==1.10.7 Django==1.10.7
django_otp==0.4.3
gunicorn==19.6.0 gunicorn==19.6.0
Pillow==3.4.2 Pillow==3.4.2
psycopg2==2.6.2 psycopg2==2.6.2
...@@ -12,8 +11,7 @@ django-two-factor-auth==1.6.1 ...@@ -12,8 +11,7 @@ django-two-factor-auth==1.6.1
nexmo nexmo
django-excel==0.0.9 django-excel==0.0.9
pyexcel-xls==0.5.0 pyexcel-xls==0.5.0
pyexcel==0.5.8 pyexcel==0.5.3
pyexcel-io==0.5.8
pycurl==7.43.0 pycurl==7.43.0
django-stronghold==0.2.9 django-stronghold==0.2.9
timeout-decorator==0.4.0 timeout-decorator==0.4.0
...@@ -2,11 +2,7 @@ ...@@ -2,11 +2,7 @@
SECRET_KEY = 'Paste long random string here' # Insert long random string SECRET_KEY = 'Paste long random string here' # Insert long random string
# SECURITY WARNING: don't run with debug turned on in production! # SECURITY WARNING: don't run with debug turned on in production!
DEBUG = False DEBUG = True
DEV_APPS = [
# 'debug_toolbar',
]
WSGI_APPLICATION = 'smash.wsgi.application' WSGI_APPLICATION = 'smash.wsgi.application'
......
...@@ -11,7 +11,6 @@ https://docs.djangoproject.com/en/1.10/ref/settings/ ...@@ -11,7 +11,6 @@ https://docs.djangoproject.com/en/1.10/ref/settings/
""" """
import os import os
from local_settings import DEV_APPS
# Build paths inside the project like this: os.path.join(BASE_DIR, ...) # Build paths inside the project like this: os.path.join(BASE_DIR, ...)
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
...@@ -37,10 +36,10 @@ INSTALLED_APPS = [ ...@@ -37,10 +36,10 @@ INSTALLED_APPS = [
'django_otp.plugins.otp_totp', 'django_otp.plugins.otp_totp',
'two_factor', 'two_factor',
'web', 'web',
'stronghold' 'stronghold',
]
INSTALLED_APPS += DEV_APPS 'debug_toolbar'
]
MIDDLEWARE = [ MIDDLEWARE = [
'debug_toolbar.middleware.DebugToolbarMiddleware', 'debug_toolbar.middleware.DebugToolbarMiddleware',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment