Skip to content

Commit 6fb4d94

Browse files
committed
Another attempt to fix compressor
1 parent 5b98138 commit 6fb4d94

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

chart/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ initCommands:
2424
zipfile.ZipFile('/code/data/nuremberg_prod_dump_latest.sqlite3.zip').extractall(path='/tmp')
2525
EOF
2626
- name: collectstatic
27-
command: './manage.py collectstatic --noinput'
27+
command: './manage.py compress --force && ./manage.py collectstatic --noinput'
2828

2929
podSecurityContext:
3030
fsGroup: 1000

docker-compose.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ services:
1616
target: release
1717
tty: true
1818
working_dir: /code
19-
# command: python manage.py runserver 0.0.0.0:8000
19+
command: python manage.py runserver 0.0.0.0:8000
2020
ports:
2121
- "127.0.0.1:8000:8000"
2222
volumes:
@@ -26,10 +26,10 @@ services:
2626
environment:
2727
# let Django load Docker-specific settings conditionally
2828
- DOCKERIZED=True
29-
- DEBUG=False
29+
- DEBUG=True
3030
- SECRET_KEY=top-secret-1234
31-
- LOCAL_DEVELOPMENT=False
32-
- DJANGO_VITE_DEV_MODE=False
31+
- LOCAL_DEVELOPMENT=True
32+
- DJANGO_VITE_DEV_MODE=True
3333
depends_on:
3434
- solr
3535
stop_signal: SIGKILL

0 commit comments

Comments
 (0)