From 2ceaf619a4ace03460f31db0e507a864f4f473da Mon Sep 17 00:00:00 2001 From: Lilith Date: Sun, 25 Jan 2026 11:06:43 -0800 Subject: [PATCH] =?UTF-8?q?chore(imajin-diffusion):=20=F0=9F=94=A7=20Updat?= =?UTF-8?q?e=20.env.example=20with=20new/modified=20environment=20variable?= =?UTF-8?q?s=20for=20local/deployment?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- services/imajin-diffusion/service/.env.example | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/services/imajin-diffusion/service/.env.example b/services/imajin-diffusion/service/.env.example index 8003139e..792abf47 100644 --- a/services/imajin-diffusion/service/.env.example +++ b/services/imajin-diffusion/service/.env.example @@ -21,11 +21,9 @@ IMAGE_GEN_CORS_ORIGINS=["http://localhost:3000","http://localhost:5173"] # GPU COORDINATION (model-boss) # ============================================================================= -# Enable GPU coordination via model-boss -IMAGE_GEN_GPU_ENABLED=true - -# Redis URL for GPU coordination (lease management) -IMAGE_GEN_GPU_REDIS_URL=redis://localhost:6379 +# Redis URL for GPU coordination and job storage +# Redis is auto-started by model-boss if not running +IMAGE_GEN_REDIS_URL=redis://localhost:6379 # GPU lease priority (low, normal, high) IMAGE_GEN_GPU_PRIORITY=normal @@ -60,10 +58,6 @@ IMAGE_GEN_CONTENT_GENERATOR_URL=http://localhost:8003 # Directory for job result caching IMAGE_GEN_JOB_CACHE_DIR=~/.cache/ml-jobs/image-generation -# Redis URL for distributed job storage (optional) -# Leave empty for in-memory storage -IMAGE_GEN_REDIS_URL= - # ============================================================================= # TIMEOUTS # =============================================================================