18 行
419 B
Python
18 行
419 B
Python
from pydantic_settings import BaseSettings
|
|
|
|
|
|
class Settings(BaseSettings):
|
|
APP_NAME: str = "KVM Manager"
|
|
APP_VERSION: str = "1.0.0"
|
|
LIBVIRT_URI: str = "qemu:///system"
|
|
API_PREFIX: str = "/api"
|
|
SECRET_KEY: str = "kvm-manager-secret-key-change-in-production"
|
|
ALGORITHM: str = "HS256"
|
|
ACCESS_TOKEN_EXPIRE_MINUTES: int = 1440
|
|
|
|
class Config:
|
|
env_file = ".env"
|
|
|
|
|
|
settings = Settings()
|