mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2025-12-20 20:29:06 +00:00
server: allow extra environment variable to ease switch between branch
suggested by Andreas
This commit is contained in:
@@ -2,7 +2,11 @@ from pydantic_settings import BaseSettings, SettingsConfigDict
|
|||||||
|
|
||||||
|
|
||||||
class Settings(BaseSettings):
|
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
|
OPENMP_KMP_DUPLICATE_LIB_OK: bool = False
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user