diff --git a/backend/app/config.py b/backend/app/config.py index dce4191..87e1e54 100644 --- a/backend/app/config.py +++ b/backend/app/config.py @@ -12,10 +12,13 @@ class Settings(BaseSettings): access_token_expire_minutes: int = Field(default=30, ge=5, le=1440) allow_origins: str = "" pve_host: str - pve_node: str = "pve" + pve_node: str = "pve1" pve_token_name: str pve_token_value: SecretStr pve_verify_ssl: bool = True + pve_vm_storage: str = "SSD" + pve_lxc_storage: str = "SSD" + pve_bridge: str = "vmbr0" environment: str = "production" model_config = SettingsConfigDict(