File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -24,13 +24,12 @@ mkdir -p ${LOG_DIR}
24
24
25
25
# update changes before update
26
26
# git pull
27
- npm install
28
27
source .venv/bin/activate
29
28
uv sync
30
29
cd pythonkr_backend
31
30
export DJANGO_SETTINGS_MODULE=" pythonkr_backend.settings.prod"
32
31
./manage.py migrate --no-input
33
- ./manage.py tailwind build
32
+ ./manage.py tailwind install && ./manage.py tailwind build
34
33
./manage.py loaddata fixtures.json
35
34
./manage.py collectstatic --clear --noinput
36
35
gunicorn --workers=2 \
Original file line number Diff line number Diff line change 2
2
3
3
4
4
cd /app
5
- npm install
6
5
source .venv/bin/activate
7
6
uv sync
8
7
cd /app/pythonkr_backend
9
8
export DJANGO_SETTINGS_MODULE=" pythonkr_backend.settings.localtesting"
10
9
./manage.py migrate --no-input
11
- ./manage.py tailwind build
10
+ ./manage.py tailwind install && ./manage.py tailwind build
12
11
./manage.py loaddata fixtures.json
13
12
./manage.py collectstatic --clear --noinput
14
13
export DJANGO_SUPERUSER_PASSWORD=test
You can’t perform that action at this time.
0 commit comments