File tree 2 files changed +4
-3
lines changed
2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 3
3
4
4
sys .path .insert (0 , os .path .join (os .path .dirname (os .path .dirname (__file__ )), "src" ))
5
5
6
- from config import app_config # noqa: E402
6
+ from config import ENV_PREFIX , app_config # noqa: E402
7
7
8
8
9
9
def generate_doc ():
10
10
lines = []
11
11
lines .append ("| 环境变量 | 默认值 | 说明 |" )
12
12
lines .append ("| --- | --- | --- |" )
13
13
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 ()} "
15
15
default = info ["default" ]
16
16
if default is None :
17
17
default = "无"
Original file line number Diff line number Diff line change @@ -69,4 +69,5 @@ class AppConfig(BaseSettings):
69
69
)
70
70
71
71
72
- app_config = AppConfig (_env_prefix = "DOUDARR_" )
72
+ ENV_PREFIX = "DOUDARR_"
73
+ app_config = AppConfig (_env_prefix = ENV_PREFIX )
You can’t perform that action at this time.
0 commit comments