server: allow extra environment variable to ease switch between branch

suggested by Andreas
This commit is contained in:
2023-11-01 18:26:55 +01:00
committed by Mathieu Virbel
parent 619c142ee3
commit 726efbc97a

View File

@@ -2,7 +2,11 @@ from pydantic_settings import BaseSettings, SettingsConfigDict
class Settings(BaseSettings):
model_config = SettingsConfigDict(env_file=".env", env_file_encoding="utf-8")
model_config = SettingsConfigDict(
env_file=".env",
env_file_encoding="utf-8",
extra="ignore",
)
OPENMP_KMP_DUPLICATE_LIB_OK: bool = False