36 lines
717 B
YAML
36 lines
717 B
YAML
# Example configuration file for DexOrder user container
|
|
# Mount this at /app/config/config.yaml in k8s
|
|
|
|
# Data directory for persistent storage (workspace, strategies, etc.)
|
|
# Defaults to ./data relative to working directory if not set
|
|
# In k8s this is mounted as a PVC at /app/data
|
|
data_dir: "/app/data"
|
|
|
|
# User-specific settings
|
|
user:
|
|
timezone: "UTC"
|
|
|
|
# Data sources
|
|
data:
|
|
iceberg:
|
|
catalog_name: "dexorder"
|
|
# Catalog properties loaded from secrets
|
|
|
|
relay:
|
|
endpoint: "tcp://relay:5560"
|
|
timeout_ms: 5000
|
|
|
|
# Strategy settings
|
|
strategies:
|
|
max_concurrent: 5
|
|
default_timeout_minutes: 60
|
|
|
|
# Alert settings
|
|
alerts:
|
|
max_active: 100
|
|
|
|
# Logging
|
|
logging:
|
|
level: "INFO"
|
|
include_timestamps: true
|