初始化代码

This commit is contained in:
wzy-warehouse
2026-05-08 15:42:32 +08:00
parent 7d18effcfe
commit 4ef23fec7c
26 changed files with 140 additions and 2263 deletions
+11
View File
@@ -0,0 +1,11 @@
from dynaconf import Dynaconf
settings = Dynaconf(
# 配置文件
settings_files=['settings.toml', '.secrets.toml'],
# 环境变量
environments=True,
# 环境切换变量
env_switcher="ENV_FOR_DYNACONF",
)