added working config lib

This commit is contained in:
Bojan Kucera 2025-06-03 14:09:31 -04:00
parent f8576c0d93
commit def9bce8dc
33 changed files with 2896 additions and 1485 deletions

View file

@ -1,24 +1,25 @@
/**
* @stock-bot/config
*
* Configuration management library for Stock Bot platform
* Configuration management library for Stock Bot platform using envalid
*/
// Core configuration functionality
export * from './core';
export * from './types';
// Database configurations
export * from './database';
export * from './questdb';
export * from './mongodb';
export * from './dragonfly';
// Logging and monitoring configurations
export * from './logging';
export * from './loki';
export * from './monitoring';
// Data provider configurations
export * from './data-providers';
// Risk management configurations
export * from './risk';
// Logging configurations
export * from './logging';
// Service-specific configurations
export * from './services/index';