We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent acae95e commit a7a18deCopy full SHA for a7a18de
src/python_seed/api/application_settings.py
@@ -15,6 +15,11 @@
15
16
17
class ApplicationSettings(BaseSettings):
18
+ logging_level: str
19
+ cosmos_db_no_sql_url: str
20
+ cosmos_db_no_sql_key: SecretStr = Field(alias="CosmosDbNoSqlKey")
21
+ cosmos_db_no_sql_database: str
22
+
23
model_config = SettingsConfigDict(
24
extra="ignore",
25
env_nested_delimiter="__",
@@ -24,11 +29,6 @@ class ApplicationSettings(BaseSettings):
29
),
30
)
26
31
27
- logging_level: str
28
- cosmos_db_no_sql_url: str
- cosmos_db_no_sql_key: SecretStr = Field(alias="CosmosDbNoSqlKey")
- cosmos_db_no_sql_database: str
-
32
@classmethod
33
def settings_customise_sources(
34
cls,
0 commit comments