32 lines
1.4 KiB
Plaintext
32 lines
1.4 KiB
Plaintext
# ============================================================================
|
|
# ANNOTATE Application Configuration
|
|
# ============================================================================
|
|
|
|
# ----------------------------------------------------------------------------
|
|
# Model Auto-Loading
|
|
# ----------------------------------------------------------------------------
|
|
# Automatically load a model at startup for immediate use
|
|
# Options: Transformer, CNN, DQN, none
|
|
# Default: Transformer
|
|
AUTO_LOAD_MODEL=Transformer
|
|
|
|
# ----------------------------------------------------------------------------
|
|
# Logging Configuration
|
|
# ----------------------------------------------------------------------------
|
|
# Comma-separated list of enabled logging channels
|
|
# Available channels: core, trading, training, inference, pivots, data, websocket, api, webui, performance, debug
|
|
# Leave empty to use defaults (pivots, websocket, api, webui, debug are disabled by default)
|
|
|
|
# Example: Enable all channels
|
|
# LOG_CHANNELS=core,trading,training,inference,pivots,data,websocket,api,webui,performance,debug
|
|
|
|
# Example: Minimal logging (core operations only)
|
|
# LOG_CHANNELS=core,trading,training,inference
|
|
|
|
# Example: Debug mode (enable everything)
|
|
# LOG_CHANNELS=core,trading,training,inference,pivots,data,websocket,api,webui,performance,debug
|
|
|
|
# Default (recommended for production)
|
|
LOG_CHANNELS=core,trading,training,inference,data,performance
|
|
|