From 84f3d25c74c840670a9d2592bf76de36eb4a97a6 Mon Sep 17 00:00:00 2001 From: host Date: Sun, 9 Aug 2026 14:47:14 +0300 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=D1=8B=20=D0=BD=D0=B0=D1=81=D1=82=D1=80=D0=BE=D0=B9=D0=BA?= =?UTF-8?q?=D0=B8=20storage=20=D0=B8=20bridge=20Proxmox?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/app/config.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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(