File tree 2 files changed +10
-7
lines changed
2 files changed +10
-7
lines changed Original file line number Diff line number Diff line change @@ -15,21 +15,21 @@ services:
15
15
context : .
16
16
target : release
17
17
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
20
20
ports :
21
21
- " 127.0.0.1:8000:8000"
22
22
volumes :
23
23
# BIND MOUNTS
24
- - ./web:/nuremberg
24
+ - ./web:/code
25
25
- ./media:/media
26
26
environment :
27
27
# let Django load Docker-specific settings conditionally
28
28
- DOCKERIZED=True
29
- - DEBUG=True
29
+ - DEBUG=False
30
30
- 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
33
33
depends_on :
34
34
- solr
35
35
stop_signal : SIGKILL
Original file line number Diff line number Diff line change 145
145
#
146
146
COMPRESS_PRECOMPILERS = (('text/less' , 'lessc {infile} {outfile}' ),)
147
147
148
- COMPRESS_STORAGE = 'compressor.storage.GzipCompressorFileStorage'
148
+ COMPRESS_STORAGE = 'compressor.storage.OfflineManifestFileStorage'
149
+ COMPRESS_OFFLINE = True
150
+ COMPRESS_OFFLINE_MANIFEST = 'compress-manifest.json'
149
151
150
152
# whitenoise settings
151
153
# https://warehouse.python.org/project/whitenoise/
244
246
SECRET_KEY = 'supersecret'
245
247
DEBUG = True
246
248
COMPRESS_ENABLED = True
249
+ COMPRESS_FORCE = False
247
250
248
251
CACHES = {
249
252
'default' : {'BACKEND' : 'django.core.cache.backends.dummy.DummyCache' }
You can’t perform that action at this time.
0 commit comments