Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion django.mk
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ REQUIREMENTS ?= requirements.txt
SYS_PYTHON ?= python3
PY_SENTINAL ?= $(VE)/sentinal
WHEEL_VERSION ?= 0.45.1
PIP_VERSION ?= 25.2
PIP_VERSION ?= 25.3
MAX_COMPLEXITY ?= 10
INTERFACE ?= localhost
RUNSERVER_PORT ?= 8000
Expand Down
4 changes: 3 additions & 1 deletion quizcon/settings_shared.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,14 @@
'courseaffils',
'lti_provider',
'quizcon.main',
'debug_toolbar',
]

ALLOWED_HOSTS += ['127.0.0.1'] # noqa

MIDDLEWARE += [ # noqa
'quizcon.main.middleware.WhoDidItMiddleware'
'quizcon.main.middleware.WhoDidItMiddleware',
'debug_toolbar.middleware.DebugToolbarMiddleware',
]

THUMBNAIL_SUBDIR = "thumbs"
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ django-appconf==1.1.0
django-statsd-mozilla==0.4.0
sentry-sdk==2.43.0
django-bootstrap4==25.2
django-debug-toolbar==5.2.0
django-debug-toolbar==6.1.0

django-smoketest==1.2.1
# For django-extensions
Expand Down
Loading