Skip to content

Commit ea8a3be

Browse files
committed
Add start-worker.sh and start-tailwind.sh scripts, use script in compose
- Add start-worker.sh for django-q2 qcluster - Add start-tailwind.sh for tailwind watch - Update compose tailwind service to use the script
1 parent 7a5158d commit ea8a3be

3 files changed

Lines changed: 5 additions & 1 deletion

File tree

compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ services:
6363

6464
tailwind:
6565
<<: *common-settings
66-
command: ["uv", "run", "-m", "manage", "tailwind", "--skip-checks", "watch"]
66+
command: ["/src/start-tailwind.sh"]
6767
depends_on: []
6868
init: true
6969

start-tailwind.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#!/bin/sh
2+
uv run -m manage tailwind watch

start-worker.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#!/bin/sh
2+
uv run -m manage qcluster --skip-checks

0 commit comments

Comments
 (0)