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 6dd9137 commit bc325cfCopy full SHA for bc325cf
microbootstrap/settings.py
@@ -23,7 +23,7 @@
23
class BaseServiceSettings(
24
pydantic_settings.BaseSettings,
25
):
26
- service_debug: bool = True
+ service_debug: bool = False
27
service_environment: str | None = None
28
service_name: str = "micro-service"
29
service_description: str = "Micro service description"
@@ -32,7 +32,7 @@ class BaseServiceSettings(
32
33
server_host: str = "0.0.0.0" # noqa: S104
34
server_port: int = 8000
35
- server_reload: bool = True
+ server_reload: bool = False
36
server_workers_count: int = 1
37
38
model_config = pydantic_settings.SettingsConfigDict(
0 commit comments