Set up the logging environment for authentication

This commit is contained in:
Nicolas 2025-09-22 18:02:39 +08:00
parent 0107feabb9
commit 24fe043fc3

View File

@ -1,10 +1,11 @@
import os
from pydantic_settings import BaseSettings
class AppSettings(BaseSettings):
NAME: str = "authentication"
APP_NAME: str = NAME
APP_ENV: str = "alpha"
APP_ENV: str = os.environ.get("APP_ENV", "alpha")
METRICS_ENABLED: bool = False
PROBES_ENABLED: bool = True