✨ feat(base.Dockerfile): add healthcheck for queue and celeryworker services to ensure their availability ✨ feat(docker-compose.yml): add healthcheck for queue, celeryworker, and flower services to ensure their availability 🐛 fix(docker-compose.yml): fix the path in the command for backend service startup 🐛 fix(flower.env): add missing double quote at the end of C_FORCE_ROOT value 🐛 fix(startup-backend.sh): remove unnecessary --reload flag from uvicorn command and add --workers -1 flag to utilize all available CPU cores
9 lines
No EOL
261 B
Bash
9 lines
No EOL
261 B
Bash
LANGFLOW_CACHE_TYPE=redis
|
|
LANGFLOW_REDIS_HOST=queue
|
|
LANGFLOW_REDIS_PORT=6379
|
|
LANGFLOW_REDIS_DB=0
|
|
LANGFLOW_REDIS_EXPIRE=3600
|
|
LANGFLOW_REDIS_PASSWORD=
|
|
BROKER_URL=redis://queue:6379/0
|
|
RESULT_BACKEND=redis://queue:6379/0
|
|
C_FORCE_ROOT="true # ! Only for development" |