UNPKG

@clipwhisperer/common

Version:

ClipWhisperer Common - Shared library providing core utilities, database schemas, authentication, bucket management, and common functionality across all ClipWhisperer microservices

23 lines (22 loc) 619 B
/** * Redis Configuration Constants * Centralized Redis connection and queue configuration */ export declare const REDIS_DEFAULTS: { readonly HOST: string; readonly PORT: number; }; export declare const REDIS_CONNECTION_CONFIG: { readonly host: string; readonly port: number; }; export declare const DEFAULT_QUEUE_OPTIONS: { readonly removeOnComplete: true; readonly removeOnFail: true; }; export declare const QUEUE_NAMES: { readonly NARRATOR: "narrator"; readonly SCRAPER: "youtube-scrape-dl"; readonly REDDIT_SCRAPER: "reddit-scrape"; readonly RENDERER: "video-render"; };