feat(frontend): integrate tailwind pipeline and update templates
This commit is contained in:
@ -31,6 +31,7 @@ services:
|
||||
command: gunicorn config.wsgi:application --bind 0.0.0.0:8000 --workers ${GUNICORN_WORKERS:-3}
|
||||
volumes:
|
||||
- .:/app
|
||||
- node_modules_data:/app/node_modules
|
||||
- static_data:/app/staticfiles
|
||||
- media_data:/app/media
|
||||
- runtime_data:/app/runtime
|
||||
@ -43,6 +44,18 @@ services:
|
||||
retries: 8
|
||||
restart: unless-stopped
|
||||
|
||||
tailwind:
|
||||
build:
|
||||
context: .
|
||||
dockerfile: Dockerfile
|
||||
env_file:
|
||||
- .env
|
||||
command: npm run dev
|
||||
volumes:
|
||||
- .:/app
|
||||
- node_modules_data:/app/node_modules
|
||||
restart: unless-stopped
|
||||
|
||||
celery_worker:
|
||||
build:
|
||||
context: .
|
||||
@ -118,3 +131,4 @@ volumes:
|
||||
media_data:
|
||||
runtime_data:
|
||||
redis_data:
|
||||
node_modules_data:
|
||||
|
||||
Reference in New Issue
Block a user