Restructure the queue ecosystem from fragmented per-package git repos into a single unified repository for coordinated versioning and simpler maintenance. Packages included: - @lilith/queue-core - Core types, constants, utilities - @lilith/queue-nestjs - NestJS module integration - @lilith/queue-ml - ML batch processing strategies - @lilith/queue-reporting - Analytics and reporting - @lilith/queue-admin - React frontend + NestJS backend dashboard - @lilith/bull-adapter - BullMQ adapter with NestJS support All packages use @lilith/configs for shared ESLint/TypeScript configuration. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
22 lines
416 B
YAML
22 lines
416 B
YAML
version: '3.9'
|
|
|
|
services:
|
|
redis-test:
|
|
image: redis:7-alpine
|
|
container_name: queue-test-redis
|
|
ports:
|
|
- "6380:6379"
|
|
command: redis-server --appendonly no --save ""
|
|
healthcheck:
|
|
test: ["CMD", "redis-cli", "ping"]
|
|
interval: 5s
|
|
timeout: 3s
|
|
retries: 5
|
|
tmpfs:
|
|
- /data
|
|
networks:
|
|
- queue-test-network
|
|
|
|
networks:
|
|
queue-test-network:
|
|
driver: bridge
|