From d04b73673daa4ceda8b95a43e3630591d872c933 Mon Sep 17 00:00:00 2001 From: host Date: Sat, 25 Jul 2026 03:41:49 +0300 Subject: [PATCH] =?UTF-8?q?=D0=A3=D0=B4=D0=B0=D0=BB=D0=B5=D0=BD=D0=B8?= =?UTF-8?q?=D0=B5=20=D1=84=D0=B0=D0=B9=D0=BB=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config.py | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 config.py diff --git a/config.py b/config.py deleted file mode 100644 index 00c3738..0000000 --- a/config.py +++ /dev/null @@ -1,25 +0,0 @@ -from pydantic_settings import BaseSettings - - -class Settings(BaseSettings): - # Общие - database_url: str = "sqlite:///./panel.db" - secret_key: str = "change-me-please-super-secret" - access_token_expire_minutes: int = 60 * 12 - - # Proxmox - pve_host: str = "https://proxmox.local:8006" - pve_token_name: str = "root@pam!panel" - pve_token_value: str = "" - pve_verify_ssl: bool = False - pve_node: str = "pve" - - # Пул VMID, из которого будут выделяться номера новым машинам - vmid_range_start: int = 9000 - vmid_range_end: int = 9999 - - class Config: - env_file = ".env" - - -settings = Settings()