Commit 5c86b708 authored by Alexandr Dzehil's avatar Alexandr Dzehil 😎

Add whitenoise

parent c21ce94f
Pipeline #6859 canceled with stages
......@@ -35,7 +35,6 @@ DEBUG = env('DEBUG', default=True)
DEVELOPMENT_MODE = env('DEVELOPMENT_MODE', default=True)
ALLOWED_HOSTS = env('ALLOWED_HOSTS', default=[])
print('Allowed hosts:', ALLOWED_HOSTS)
# Application definition
......@@ -57,6 +56,7 @@ INSTALLED_APPS = [
MIDDLEWARE = [
'django.middleware.security.SecurityMiddleware',
'whitenoise.middleware.WhiteNoiseMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.common.CommonMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
......@@ -151,6 +151,11 @@ STATIC_ROOT = os.path.join(BASE_DIR, 'static/')
MEDIA_URL = '/media/'
MEDIA_ROOT = os.path.join(BASE_DIR, 'media/')
STORAGES = {
'staticfiles': {
'BACKEND': 'whitenoise.storage.CompressedManifestStaticFilesStorage',
},
}
# Celery
REDIS_URL = env('REDIS_URL', default=f'redis://127.0.0.1:6379')
......
......@@ -17,16 +17,16 @@ click-repl==0.2.0
decorator==4.4.2
Django==4.1.7
django-celery-beat==2.4.0
django-debug-toolbar==3.8.1
django-environ==0.10.0
django-ffmpeg==0.1.6
django-redis==5.2.0
django-s3direct==2.0.3
django-storages==1.13.2
django-timezone-field==5.0
django_debug_toolbar==3.8.1
djangorestframework==3.14.0
environs==9.5.0
ez-setup==0.9
ez_setup==0.9
gevent==22.10.2
google-api-core==2.11.0
google-api-python-client==2.84.0
......@@ -75,5 +75,6 @@ urlparse3==1.1
vine==5.0.0
wcwidth==0.2.6
whatever==0.7
whitenoise==6.8.2
zope.event==4.6
zope.interface==5.5.2
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment