19 lines
401 B
Python
19 lines
401 B
Python
import os
|
|
from pydantic_settings import BaseSettings
|
|
|
|
|
|
class AppSettings(BaseSettings):
|
|
NAME: str = "central_storage"
|
|
|
|
AZURE_STORAGE_DOCUMENT_API_ENDPOINT: str = (
|
|
"https://freeleaps1document.blob.core.windows.net/"
|
|
)
|
|
AZURE_STORAGE_DOCUMENT_API_KEY: str = ""
|
|
|
|
class Config:
|
|
env_file = ".myapp.env"
|
|
env_file_encoding = "utf-8"
|
|
|
|
|
|
app_settings = AppSettings()
|