Files
bn-pc/config.py
2026-02-04 09:42:43 +08:00

14 lines
328 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

"""
Dynaconf 配置入口。
配置项可从 settings.toml、.secrets.toml 及环境变量(前缀 BINANCE_POSITION_加载。
"""
from dynaconf import Dynaconf
settings = Dynaconf(
envvar_prefix="BINANCE_POSITION",
settings_files=["settings.toml", ".secrets.toml"],
load_dotenv=True,
merge_enabled=True,
)