no idea- added loki and other stuff to market-data-gateway, also added config lib

This commit is contained in:
Bojan Kucera 2025-06-03 11:37:58 -04:00
parent b957fb99aa
commit 1b71fc87ab
72 changed files with 6178 additions and 153 deletions

24
libs/config/src/index.ts Normal file
View file

@ -0,0 +1,24 @@
/**
* @stock-bot/config
*
* Configuration management library for Stock Bot platform
*/
// Core configuration functionality
export * from './core';
export * from './types';
// Database configurations
export * from './database';
// Data provider configurations
export * from './data-providers';
// Risk management configurations
export * from './risk';
// Logging configurations
export * from './logging';
// Service-specific configurations
export * from './services';