diff --git a/src/pydase/config.py b/src/pydase/config.py index f92b11d..11ab0d2 100644 --- a/src/pydase/config.py +++ b/src/pydase/config.py @@ -15,7 +15,7 @@ class ServiceConfig(BaseConfig): # type: ignore[misc] web_port: int = 8001 rpc_port: int = 18871 - CONFIG_SOURCES = EnvSource(allow_all=True, prefix="SERVICE_") + CONFIG_SOURCES = EnvSource(allow_all=True, prefix="SERVICE_", file=".env") class WebServerConfig(BaseConfig): # type: ignore[misc]