Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | /** * Configuration Module * * Exports configuration management, runtime state, and dependency injection container. * * The unified configuration system provides: * - Hierarchical config: Instance → Users → Sites * - Layered resolution: App Defaults < Instance Defaults < User Prefs < Instance Forced * - Environment variable overrides (QUIQR_* prefix) * - Hardcoded defaults for all settings */ // Legacy config (for backward compatibility during transition) export * from './app-config.js'; export * from './app-state.js'; export * from './container.js'; // Unified configuration system export * from './config-store.js'; export * from './env-override-layer.js'; export * from './config-resolver.js'; export * from './unified-config-service.js'; |