Do a pipenv update to get patched Django

This commit is contained in:
Danielle McLean 2021-08-22 23:24:58 +10:00
parent 76496e7169
commit 37d5a7a20d
Signed by: 00dani
GPG Key ID: 9DDE1EDE01E3A605
2 changed files with 886 additions and 543 deletions

1426
Pipfile.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -3,3 +3,6 @@ from .base import *
ALLOWED_HOSTS = ['*']
SECURE_SSL_REDIRECT = False
STATICFILES_STORAGE = 'django.contrib.staticfiles.storage.StaticFilesStorage'
MEDIA_URL = '/media/'
STATIC_ROOT = path.join(BASE_DIR, 'media')