25 lines
555 B
TypeScript
25 lines
555 B
TypeScript
/**
|
|
* @stock-bot/config
|
|
*
|
|
* Configuration management library for Stock Bot platform using envalid
|
|
*/
|
|
|
|
// Core configuration functionality
|
|
export * from './core';
|
|
|
|
// Database configurations
|
|
export * from './postgres';
|
|
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';
|