netadm/config.py

58 lines
1.3 KiB
Python
Raw Normal View History

2024-10-01 11:29:39 +00:00
from pydantic import BaseModel
from pydantic_settings import (
BaseSettings,
SettingsConfigDict,
)
from pathlib import Path
import logging
2024-10-01 12:05:49 +00:00
BASE_DIR = Path(__file__).parent
2024-10-01 14:09:19 +00:00
TEMPLATES_DIR = BASE_DIR / "web" / "templates"
STATIC_DIR = BASE_DIR / "web" / "static"
2024-10-01 11:29:39 +00:00
class RunConfig(BaseModel):
2024-10-01 15:06:04 +00:00
host: str
port: int
reload: bool
2024-10-01 11:29:39 +00:00
2024-10-01 12:05:49 +00:00
class SwaggerConfig(BaseModel):
openapi_url: str = "/openapi.json"
title: str = "Netadm API"
oauth2_redirect_url: str = "/docs/oauth2-redirect"
swagger_js_url: str = "/static/swagger/swagger-ui-bundle.js"
swagger_css_url: str = "/static/swagger/swagger-ui.css"
swagger_favicon_url: str = "/static/swagger/favicon.png"
2024-10-01 11:29:39 +00:00
class Settings(BaseSettings):
model_config = SettingsConfigDict(
env_file=(
BASE_DIR / ".env-template",
BASE_DIR / ".env",
),
case_sensitive=False,
env_nested_delimiter="__",
env_prefix="NETADM_CONFIG__",
)
2024-10-01 15:06:04 +00:00
run: RunConfig
2024-10-01 12:05:49 +00:00
swagger: SwaggerConfig = SwaggerConfig()
2024-10-01 11:29:39 +00:00
settings = Settings()
def config_logging(level=logging.INFO):
logging.basicConfig(
level=level,
datefmt="%Y-%m-%d %H:%M:%S",
format="[%(asctime)s.%(msecs)03d] %(module)-25s:%(lineno)4d | %(funcName)-20s| %(levelname)-8s | %(message)s",
)
config_logging(level=logging.INFO)