From 3de66c692f08444760515b5852b7c8ced6256a72 Mon Sep 17 00:00:00 2001 From: Yannic Kilcher Date: Tue, 13 Dec 2022 16:20:56 +0100 Subject: [PATCH] removed unnecessary settings --- backend/app/config.py | 4 ---- 1 file changed, 4 deletions(-) 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("["):