Skip to content

Commit 8a7c94a

Browse files
committed
minor update about config.py
1 parent 66a4913 commit 8a7c94a

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

scripts/update_readme.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33

44
sys.path.insert(0, os.path.join(os.path.dirname(os.path.dirname(__file__)), "src"))
55

6-
from config import app_config # noqa: E402
6+
from config import ENV_PREFIX, app_config # noqa: E402
77

88

99
def generate_doc():
1010
lines = []
1111
lines.append("| 环境变量 | 默认值 | 说明 |")
1212
lines.append("| --- | --- | --- |")
1313
for name, info in app_config.model_json_schema()["properties"].items():
14-
env_var = f"DOUDARR_{name.upper()}"
14+
env_var = f"{ENV_PREFIX}{name.upper()}"
1515
default = info["default"]
1616
if default is None:
1717
default = "无"

src/config.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -69,4 +69,5 @@ class AppConfig(BaseSettings):
6969
)
7070

7171

72-
app_config = AppConfig(_env_prefix="DOUDARR_")
72+
ENV_PREFIX = "DOUDARR_"
73+
app_config = AppConfig(_env_prefix=ENV_PREFIX)

0 commit comments

Comments
 (0)