diff --git a/backend/app/config.py b/backend/app/config.py index b95ca408..85cd8631 100644 --- a/backend/app/config.py +++ b/backend/app/config.py @@ -13,10 +13,6 @@ class Settings(BaseSettings): BACKEND_CORS_ORIGINS: List[AnyHttpUrl] = [] UPDATE_ALEMBIC: bool = True - PORT: int = 8000 - FASTAPI_RELOAD: bool = False - UVICONR_WOWKERS: int = 1 - @validator("BACKEND_CORS_ORIGINS", pre=True) def assemble_cors_origins(cls, v: Union[str, List[str]]) -> Union[List[str], str]: if isinstance(v, str) and not v.startswith("["):