export const config = { redisUrl: process.env.FACEAI_REDIS_URL || 'redis://redis:6379', queueName: process.env.FACEAI_QUEUE_NAME || 'faceai-searches', workerConcurrency: Number(process.env.FACEAI_WORKER_CONCURRENCY || 2), workerTimeoutMs: Number(process.env.FACEAI_WORKER_TIMEOUT_MS || 5 * 60 * 1000), runtimeRoot: process.env.FACEAI_RUNTIME_ROOT || '/data/runtime', pklRoot: process.env.FACEAI_PKL_ROOT || '/data/pkl', matcherBinary: process.env.FACEAI_MATCHER_BINARY || '/opt/face-recognition/face_matcher', searchTtlSeconds: Number(process.env.FACEAI_SEARCH_TTL_SECONDS || 24 * 60 * 60), resultTtlSeconds: Number(process.env.FACEAI_RESULT_TTL_SECONDS || 24 * 60 * 60) };