Skip to content

Commit c00cccf

Browse files
committed
Move to COMPRESS_OFFLINE for multiple replicas
This generates a compress-manifest.json which is used to determine which file hashes are in use as apparently they are not consistent.
1 parent e2f61de commit c00cccf

File tree

2 files changed

+10
-7
lines changed

2 files changed

+10
-7
lines changed

docker-compose.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -15,21 +15,21 @@ services:
1515
context: .
1616
target: release
1717
tty: true
18-
working_dir: /nuremberg
19-
command: python manage.py runserver 0.0.0.0:8000
18+
working_dir: /code
19+
# command: python manage.py runserver 0.0.0.0:8000
2020
ports:
2121
- "127.0.0.1:8000:8000"
2222
volumes:
2323
# BIND MOUNTS
24-
- ./web:/nuremberg
24+
- ./web:/code
2525
- ./media:/media
2626
environment:
2727
# let Django load Docker-specific settings conditionally
2828
- DOCKERIZED=True
29-
- DEBUG=True
29+
- DEBUG=False
3030
- SECRET_KEY=top-secret-1234
31-
- LOCAL_DEVELOPMENT=True
32-
- DJANGO_VITE_DEV_MODE=True
31+
- LOCAL_DEVELOPMENT=False
32+
- DJANGO_VITE_DEV_MODE=False
3333
depends_on:
3434
- solr
3535
stop_signal: SIGKILL

web/nuremberg/settings.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,9 @@
145145
#
146146
COMPRESS_PRECOMPILERS = (('text/less', 'lessc {infile} {outfile}'),)
147147

148-
COMPRESS_STORAGE = 'compressor.storage.GzipCompressorFileStorage'
148+
COMPRESS_STORAGE = 'compressor.storage.OfflineManifestFileStorage'
149+
COMPRESS_OFFLINE = True
150+
COMPRESS_OFFLINE_MANIFEST = 'compress-manifest.json'
149151

150152
# whitenoise settings
151153
# https://warehouse.python.org/project/whitenoise/
@@ -244,6 +246,7 @@
244246
SECRET_KEY = 'supersecret'
245247
DEBUG = True
246248
COMPRESS_ENABLED = True
249+
COMPRESS_FORCE = False
247250

248251
CACHES = {
249252
'default': {'BACKEND': 'django.core.cache.backends.dummy.DummyCache'}

0 commit comments

Comments
 (0)