math-backend / config.py
engineportf's picture
Upload folder using huggingface_hub
558db1e verified
Raw
History Blame Contribute Delete
414 Bytes
"""
Configuration Facade
This module re-exports components from the modularized configuration system
to maintain backward compatibility with the rest of the codebase.
Refactored into:
- constants.py
- logger.py
- config_schema.py
- config_io.py
"""
import os
from constants import *
from logger import *
from config_schema import *
from config_io import *
MASTER_KEY = os.getenv("MASTER_KEY", "QUANT-ALPHA-99")